/* General styles for the settings page */
.local-pickup-discount-settings.wrap {
    background: #f4f5f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 950px;
    margin: 20px auto 0 20px;
}

.local-pickup-discount-settings h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.local-pickup-discount-settings form {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.local-pickup-discount-settings .form-table th {
    width: 200px;
    text-align: left;
}

.local-pickup-discount-settings .form-table td {
    padding: 10px;
}

.local-pickup-discount-settings input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.local-pickup-discount-settings input[type="number"]:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.local-pickup-discount-settings .submit {
    margin-top: 20px;
}

/* Info section styles */
.info-section {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    border-radius: 4px;
}

.info-section h3 {
    margin-top: 0;
    padding-top: 0;
    color: #23282d;
    border-bottom: 1px solid #f0f0f1;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.info-section a {
    color: #2271b1; /* WordPress blue */
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-section a:hover {
    color: #135e96; /* Darker blue on hover */
    text-decoration: underline;
}

.info-section p {
    line-height: 1.7;
    margin: 1em 0;
}

/* Local pickup discount note in checkout */
.local-pickup-discount-note {
    color: #7aa354;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

/* Responsive improvements */
@media screen and (max-width: 782px) {
    .local-pickup-discount-settings .form-table th {
        width: 100%;
        display: block;
        padding-bottom: 0;
    }
    
    .local-pickup-discount-settings .form-table td {
        padding-top: 8px;
        display: block;
    }
    
    .local-pickup-discount-settings input[type="number"] {
        width: 100px;
    }
}