/**
 * SimVox Public Styles
 */

/* eSIM Order Details Styles */
.simvox-esim-details {
    margin-top: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px;
    background: #f8f8f8;
}

.simvox-esim-details h2 {
    margin-top: 0;
    color: #2271b1;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.simvox-esim-details table {
    margin-bottom: 20px;
}

.simvox-esim-details th {
    width: 150px;
    font-weight: 600;
}

.simvox-esim-qr {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.simvox-qr-notice {
    margin-bottom: 15px;
    font-style: italic;
}

/* Make sure eSIM table is responsive */
@media screen and (max-width: 768px) {
    .simvox-esim-details th,
    .simvox-esim-details td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .simvox-esim-details th {
        padding-bottom: 0;
    }
    
    .simvox-esim-details td {
        padding-top: 5px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .simvox-esim-details tr:last-child td {
        border-bottom: none;
    }
} 