/* MET Tracking Modal Styles */
.met-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.met-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    animation: metFadeIn 0.3s ease-out;
}

@keyframes metFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.met-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.met-close:hover {
    color: #333;
}

/* Timeline Styles */
.met-tracking-timeline {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    position: relative;
}

.met-tracking-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.met-tracking-timeline li {
    padding-left: 45px;
    margin-bottom: 25px;
    position: relative;
}

.met-tracking-timeline li::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #0073aa;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #0073aa;
}

.met-time {
    display: block;
    font-size: 11px;
    color: #777;
    margin-bottom: 4px;
}

.met-event strong {
    display: block;
    color: #333;
    font-size: 14px;
}

.met-event p {
    margin: 4px 0;
    font-size: 13px;
    color: #555;
}

/* Loader */
.met-loader-container {
    text-align: center;
    padding: 40px 0;
}

.met-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
