.admin-mobile-toggle {
    display: none;
}
.admin-sidebar-overlay {
    display: none;
}
@media (max-width: 992px) {
    body {
        font-size: 14px;
        overflow-x: hidden;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    p {
        line-height: 1.6;
    }
    .navbar-wrapper {
        padding: 10px 15px;
        width: 100%;
        z-index: 1000;
    }
    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-menu-wrapper {
        display: flex;
    }
    .nav-pill-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        width: min(440px, 100%);
    }
    .nav-link {
        width: 100%;
        text-align: left;
    }
    .nav-indicator {
        display: none;
    }
    .nav-section.align-left {
        flex: 0 1 auto;
        width: auto;
        max-width: calc(100% - 62px);
    }
    .nav-section.align-center,
    .nav-section.align-right {
        width: 100%;
    }
    /* mobile-toggle stilleri navbar.css'te tanımlı — burada override etme */
    .hero {
        padding: 60px 20px;
        text-align: center;
    }
    .main-title {
        font-size: 4rem;
        line-height: 1.2;
    }
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
		margin-bottom: 30px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .countdown-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 4px;
        margin-top: 30px;
        width: 100%;
        max-width: 600px;
        box-sizing: border-box;
        padding: 0;
    }
    
    .time-unit {
        flex: 1 1 0px;
        min-width: 0;
        margin: 0;
        padding: 15px 2px; 
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100px;
    }
    
    .time-unit span {
        font-size: clamp(20px, 8vw, 3rem);
        line-height: 1;
        display: block;
    }
    
    .time-unit p {
        font-size: clamp(11px, 3.5vw, 1rem);
        line-height: 1;
        margin: 8px 0 0 0; 
        word-break: keep-all;
    }
    
    .time-unit:not(:last-child)::after {
        display: none;
    }

    .section-padding {
        padding: 40px 15px;
    }
    .container {
        width: 100%;
        padding: 0 15px;
    }
    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }
    .section-title {
        margin-bottom: 15px;
    }
    .committees-grid,
    .selection-grid,
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .committee-card,
    .selection-card,
    .stat-card {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .form-wrapper {
        padding: 20px 15px;
        width: 100%;
    }
	.search-box {
		padding: 8px 15px 8px 35px !important;
	}
    .input-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .input-group {
        width: 100%;
        margin-bottom: 20px;
    }
    .custom-select-wrapper {
        width: 100%;
    }
    .custom-select-trigger {
        width: 100%;
        padding: 12px;
        background: rgba(0,0,0,0.2);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        color: white;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 100%;
        padding: 12px 15px;
        background: rgba(0,0,0,0.2);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        color: white;
        font-size: 1rem;
        box-sizing: border-box;
    }
    input:focus, textarea:focus {
        border-color: #92B775;
        outline: none;
    }
    .btn-primary,
    .btn-selection {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
        margin-top: 10px;
    }
    .modal-overlay {
        padding: 10px;
    }
    .quiz-box {
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }
    .options-grid {
        flex-direction: column;
        gap: 10px;
    }
    .quiz-option {
        width: 100%;
        padding: 15px;
    }
    .login-container {
        padding: 20px;
    }
    .login-box {
        width: 100%;
        padding: 30px 20px;
    }
    .admin-layout {
        flex-direction: column !important;
        display: flex;
    }
    .admin-main {
        margin-left: 0 !important;
        padding: 80px 20px 20px 20px !important;
        width: 100% !important;
    }
    .admin-sidebar {
        position: fixed !important;
        left: -280px; 
        top: 0;
        width: 280px !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        background: #050a06 !important;
        border-right: 1px solid rgba(146, 183, 117, 0.2) !important;
        padding: 30px 20px !important;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1100 !important;
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
        overflow-x: hidden;
    }
    .sidebar-header {
        margin-top: 50px !important;
        margin-bottom: 30px !important;
    }
    .sidebar-nav {
        flex: 1;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .admin-sidebar a.nav-item {
        display: flex !important;
        width: 100%;
        padding: 15px 20px !important;
        font-size: 0.95rem !important;
        white-space: normal;
    }
    .nav-divider {
        margin-top: auto !important;
        margin-bottom: 15px !important;
    }
    .sidebar-footer, .logout {
        display: flex !important;
        margin-top: 0 !important;
    }
    .admin-sidebar.active {
        left: 0 !important;
    }
    .admin-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        background: #92B775;
        color: white;
        border-radius: 10px;
        cursor: pointer;
        z-index: 1200;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: 0.3s;
    }
    .admin-mobile-toggle:active {
        transform: scale(0.9);
    }
    .admin-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1050;
        transition: 0.3s;
    }
    .admin-sidebar-overlay.active {
        display: block;
    }
    .admin-header {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.admin-header h1 {
		font-size: 1.6rem !important;
		text-align: center;
	}

	.admin-header p {
		text-align: center;
	}

	.admin-header .date-now {
		text-align: center;
	}
    
    .table-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .btn-export {
        width: 100% !important;
        justify-content: center;
    }
    .table-container,
    .admin-table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    table,
    .admin-table {
        width: 100%;
        min-width: 700px;
    }
    .chart-container {
        height: 250px !important;
    }
	.logo-wrapper img {
		height: 40px !important;
		margin-right: 3px !important;
	}
}
.nav-link, .btn-primary, .btn-selection, .quiz-option, .custom-option {
    min-height: 40px;
    touch-action: manipulation;
}
button:active, a:active {
    transform: scale(0.98);
    opacity: 0.8;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb {
    background: #92B775;
    border-radius: 4px;
}
