.esimdt-compat-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Progress Bar */
.esimdt-progress-container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: 6px;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
    display: none;
    /* Hidden by default */
}

.esimdt-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #4CAF50;
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Animation for indeterminate state if needed */
@keyframes esimdt-progress-indeterminate {
    0% {
        left: -30%;
        width: 30%;
    }

    50% {
        width: 50%;
    }

    100% {
        left: 100%;
        width: 30%;
    }
}

.esimdt-progress-bar.indeterminate {
    width: 30%;
    position: absolute;
    animation: esimdt-progress-indeterminate 1.5s infinite linear;
}

.esimdt-compat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.esimdt-compat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.esimdt-compat-card h3 {
    margin: 0 0 15px;
    font-weight: 600;
}

.esimdt-compat-result {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.esimdt-compat-details {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Status Colors */
#esimdt-compatibility-checker.compatible .esimdt-compat-card {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

#esimdt-compatibility-checker.compatible .esimdt-compat-icon svg path {
    stroke: #4CAF50;
}

#esimdt-compatibility-checker.not-compatible .esimdt-compat-card {
    background: rgba(244, 67, 54, 0.1);
    border-color: #F44336;
}

#esimdt-compatibility-checker.not-compatible .esimdt-compat-icon svg path {
    stroke: #F44336;
}

#esimdt-compatibility-checker.unknown .esimdt-compat-card {
    background: rgba(255, 193, 7, 0.1);
    border-color: #FFC107;
}

#esimdt-compatibility-checker.unknown .esimdt-compat-icon svg path {
    stroke: #FFC107;
}

.esimdt-compat-icon svg {
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}

/* Notification Shortcode */
.esimdt-notification-shortcode {
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 1rem;
    font-weight: 500;
}

.esimdt-notification-shortcode.esimdt-notif-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid #4CAF50;
}

.esimdt-notification-shortcode.esimdt-notif-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    border: 1px solid #F44336;
}

.esimdt-notification-shortcode.esimdt-notif-info {
    background-color: rgba(255, 193, 7, 0.1);
    color: #f57f17;
    border: 1px solid #FFC107;
}

/* My Account Specific Overrides */
.woocommerce-MyAccount-content .esimdt-compat-container {
    margin-top: 0;
    justify-content: flex-start;
}

.woocommerce-MyAccount-content .esimdt-compat-card {
    max-width: 100%;
    margin: 0;
}