/* az900-style.css */
.az900-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.az900-container {
    --primary: #2563eb;
    --secondary: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    background-color: white;
    color: var(--dark);
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.az900-inner-container {
    max-width: 700px;
    width: 100%;
}

/* Icons */
.az900-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}

/* Header */
.az900-header {
    background: white;
    color: var(--dark);
    padding: 25px 0 15px;
    text-align: center;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.az900-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.az900-header h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 20px;
}

.az900-header-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
    padding: 0 20px;
}

/* Exam Details */
.az900-header-exam-details {
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
}

.az900-header-exam-details h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.az900-header-exam-details h3 .az900-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

/* Grid */
.az900-exam-info-grid {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

.az900-exam-info-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
    text-align: right;
    padding-right: 12px;
}

.az900-exam-info-value {
    background-color: var(--light);
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: var(--gray);
}

.az900-exam-info-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Updated badge */
.az900-header-exam-updated {
    display: inline-flex;
    align-items: center;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 18px 0;
    justify-content: center;
    width: 100%;
}

.az900-header-exam-updated .az900-icon {
    margin-right: 5px;
    width: 13px;
    height: 13px;
}

/* Button */
.az900-web-simulator-container {
    display: flex;
    justify-content: center;
    margin: 18px 0;
}

.az900-web-simulator-btn {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: auto;
}

.az900-web-simulator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Stats */
.az900-header-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.az900-stat-item {
    text-align: center;
}

.az900-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.az900-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    max-width: 140px;
    line-height: 1.4;
}

/* Users info */
.az900-users-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
    padding: 10px;
    background-color: rgba(37, 99, 235, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Media Queries */
@media (max-width: 768px) {
    .az900-inner-container { max-width: 90%; }
    .az900-exam-info-grid { grid-template-columns: 1fr; gap: 6px; }
    .az900-exam-info-label { text-align: left; padding-right: 0; font-size: 0.8rem; }
    .az900-header-stats { gap: 20px; }
    .az900-header h1 { font-size: 1.6rem; }
    .az900-web-simulator-btn { padding: 9px 22px; font-size: 0.85rem; }
    .az900-header-stats { flex-direction: column; gap: 18px; }
}

@media (max-width: 480px) {
    .az900-header-stats { gap: 16px; }
    .az900-header h1 { font-size: 1.4rem; }
    .az900-stat-number { font-size: 1.5rem; }
    .az900-web-simulator-btn { padding: 8px 20px; font-size: 0.85rem; }
    .az900-users-info { flex-direction: column; text-align: center; }
    .az900-header-exam-details { padding: 18px; }
}
