/**
 * Public styles for WooCommerce Shipping & Return Policy
 */

.wc-srp-container {
    border: 1px dashed #FFA500;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    box-sizing: border-box;
}

.wc-srp-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.wc-srp-section {
    margin-bottom: 15px;
}

.wc-srp-section:last-child {
    margin-bottom: 0;
}

.wc-srp-section-title {
    font-weight: 500;
    margin-bottom: 8px;
    color: #000000;
    font-size: 16px;
}

.wc-srp-icon {
    margin-right: 5px;
}

.wc-srp-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.wc-srp-info-table td {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #333333;
    vertical-align: top;
}

.wc-srp-info-table tr:last-child td {
    border-bottom: none;
}

.wc-srp-info-table td:first-child {
    width: 40%;
    font-weight: bold;
    padding-right: 10px;
}

.wc-srp-return-policy {
    color: #333333;
}

.wc-srp-return-policy a {
    color: #FFA500;
    text-decoration: underline;
}

.wc-srp-return-policy a:hover {
    text-decoration: none;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .wc-srp-container {
        padding: 10px;
    }
    
    .wc-srp-title {
        font-size: 16px;
    }
    
    .wc-srp-section-title {
        font-size: 14px;
    }
    
    .wc-srp-info-table td:first-child {
        width: 45%;
    }
}
