/**
 * Radial Shipping Rates CSS
 */

/* Free shipping message styling */
.radial-free-shipping-message {
    display: block !important;
    margin-top: 5px !important;
    font-size: 0.9em !important;
    color: #2e8b57 !important; /* Sea green color */
    font-weight: bold !important;
    line-height: 1.4 !important;
    clear: both !important;
    width: 100% !important;
    padding-left: 5px !important;
}

/* Admin settings styling */
.radial-settings-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.radial-settings-section h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.radial-settings-section-free-shipping {
    background-color: #f0f8ff; /* Light blue background for free shipping section */
    border-color: #add8e6;
}

.radial-settings-section-rates {
    background-color: #f5f5f5; /* Light gray background for rates section */
}

.radial-store-address-box {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-family: monospace;
}

/* API Tester styling */
.radial-api-tester-results {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.radial-api-tester-success {
    color: green;
}

.radial-api-tester-error {
    color: red;
}

/* Test matrix styling */
.radial-test-matrix {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.radial-test-matrix th,
.radial-test-matrix td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.radial-test-matrix th {
    background-color: #f2f2f2;
}

.radial-test-matrix .success {
    background-color: #dff0d8;
    color: #3c763d;
}

.radial-test-matrix .error {
    background-color: #f2dede;
    color: #a94442;
}

.radial-test-matrix .cost {
    font-weight: bold;
}
