/* Gizlilik politikası çerez uyarısı */
#cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: #222e3c;
    color: #fff;
    padding: 18px 16px 16px 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.04rem;
    transition: transform 0.3s;
}
#cookie-consent .cookie-text {
    flex: 1;
    margin-right: 18px;
    line-height: 1.5;
}
#cookie-consent .cookie-btn {
    background: #f4c06a;
    color: #222e3c;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 1.08rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
#cookie-consent .cookie-btn:hover {
    background: #ffd77a;
}
@media (max-width: 600px) {
    #cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.98rem;
        padding: 14px 8px 12px 8px;
    }
    #cookie-consent .cookie-text {
        margin-right: 0;
        margin-bottom: 10px;
    }
    #cookie-consent .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
#exam-detail.exam-detail {
    max-width: 700px;
    margin: 22px auto 0 auto;
    background: #f8fafc;
    color: #1a2330;
    border: 1.5px solid #e0e6ef;
    border-radius: 8px;
    padding: 18px 22px;
    font-size: 1.07rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(60,80,120,0.04);
    font-family: inherit;
    white-space: pre-line;
}
.collapsible {
    cursor: pointer;
    position: relative;
    padding-right: 22px;
}
.collapsible::after {
    content: '\25BC';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
    color: #f4c06a;
    transition: transform 0.2s;
}
.collapsible.active::after {
    transform: translateY(-50%) rotate(-180deg);
}
.menu-group-content {
    display: none;
}
.menu-group-content.open {
    display: block;
}
.menu-group-title {
    color: #f4c06a;
    font-size: 1.08rem;
    font-weight: bold;
    margin: 10px 0 2px 10px;
    letter-spacing: 0.5px;
    user-select: none;
}
.menu-divider {
    border: none;
    border-top: 1.5px solid #3a4a5d;
    margin: 2px 0 8px 0;
    width: 85%;
    align-self: center;
}
#exam-warning.exam-warning {
    max-width: 600px;
    margin: 18px auto 0 auto;
    background: #fff4f4;
    color: #a94442;
    border: 1.5px solid #f5c6cb;
    border-radius: 7px;
    padding: 13px 18px;
    font-size: 1.01rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255,0,0,0.04);
    font-family: inherit;
}
#exam-title {
    text-align: center;
    width: 100%;
}
@media (max-width: 600px) {
    #countdown.countdown-circles {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin: 15px 0 8px 0;
    }
    .circle {
        width: 70px;
        height: 70px;
        margin-top: 0;
    }
    .circle svg {
        width: 70px;
        height: 70px;
    }
    .circle .value {
        font-size: 1.1rem;
        margin-top: 10px;
    }
    .circle .label {
        font-size: 0.85rem;
        margin-top: 3px;
    }
}
#main-info-message {
    margin-top: 60px !important;
}
#main-info-message {
    text-align: center;
    margin-top: 30px;
    color: #222e3c;
}
#main-info-message h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}
#main-info-message p {
    font-size: 1.2rem;
    margin-bottom: 0;
}
.main-circles-shape {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 10px;
}
.hourglass-anim {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 130px;
}
/* Footer gizlilik politikası */
.footer-policy {
    width: 100%;
    background: #222e3c;
    color: #fff;
    text-align: center;
    padding: 18px 10px 12px 10px;
    font-size: 0.98rem;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.07);
    transition: margin-left 0.3s;
}
/* Sidebar açıkken footer da sağa kayar */
.sidebar.open ~ .footer-policy {
    margin-left: 87px;
}
.footer-policy .policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6fb;
    padding-bottom: 30px;
}
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 60px;
    height: 100vh;
    background: #222e3c;
    transition: width 0.3s;
    z-index: 1000;
    overflow: hidden;
}
.sidebar.open {
    width: 200px;
}
.hamburger {
    width: 40px;
    margin: 20px auto;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 5px;
    background: #fff;
    margin: 7px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.menu {
    margin-top: 40px;
    display: none;
}
.sidebar.open .menu {
    display: block;
    max-height: 90vh;
    overflow-y: auto;
    padding-bottom: 20px;
}
.menu ul {
    list-style: none;
    padding: 0;
}
.menu li {
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background 0.2s;
}
.menu li:hover, .menu li.active {
    background: #3a4a5d;
}
.main-content {
    margin-left: 60px;
    padding: 40px 30px 30px 30px;
    transition: margin-left 0.3s;
}
.sidebar.open ~ .main-content {
    margin-left: 200px;
}
#countdown.countdown-circles {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 20px 0;
}
.circle {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
}
.circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}
.circle circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 14;
}
.circle .value {
    position: relative;
    font-size: 2.7rem;
    font-weight: bold;
    color: #222e3c;
    z-index: 1;
    margin-top: 13px;
}
.circle .label {
    position: relative;
    font-size: 1.2rem;
    color: #555;
    z-index: 1;
    margin-top: 10px;
}
.circle .progress {
    stroke: #3a4a5d;
    stroke-width: 14;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s linear;
}
#exam-date {
    font-size: 1.2rem;
    color: #555;
    margin-top: 70px;
    text-align: center;
}
#baslik{
    font-size: 18px;
    font-weight: bold;
    
}
