:root {
    --primary-blue: #007bff; 
    --dark-blue: #0056b3; 
    --accent-blue: #17a2b8; 
    --neon-blue: rgba(0, 191, 255, 0.7); 
    --neon-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue); 
    --text-light: white; 
    --text-dark: #333; 
    --background-opacity: 0.95; 
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; 
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff; 
    position: relative;
}

.hero-btn-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.btn-hero-primary {
    background-color: var(--primary-blue);
    color: white !important;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-shadow); 
    display: inline-block;
    text-transform: uppercase;
}

.btn-hero-primary:hover {
    transform: translateY(-5px); 
    background-color: var(--dark-blue);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px rgba(0, 191, 255, 0.4);
}

.btn-hero-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px); 
    display: inline-block;
    text-transform: uppercase;
}

.btn-hero-outline:hover {
    transform: translateY(-5px);
    background-color: white;
    color: var(--dark-blue) !important;
}

@media (max-width: 576px) {
    .hero-btn-group {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero-primary, .btn-hero-outline {
        width: 80%;
        text-align: center;
    }
}

.hero-premium {
    position: relative;
    height: 100vh; 
    width: 100vw;  
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: url('../assets/resimler/budget_7.png') no-repeat center center;
    background-size: cover; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: -180px; 
    overflow: hidden;
}
.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(1, 10, 26, 0.6), rgba(1, 10, 26, 0.4));
}

.hero-inner-content { position: relative; z-index: 5; max-width: 800px; padding: 20px; }



.hero-main-title { font-size: 5rem; font-weight: 900; margin: 25px 0; letter-spacing: -2px; }
.neon-glow { color: #00d2ff; text-shadow: 0 0 20px rgba(0, 210, 255, 0.8); }

.live-stats-bar {
    background: #ffffff;
    margin: 0 !important; 
    padding: 40px 0;
    border-top: 5px solid #007bff;
    display: block;
    position: relative;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    width: 100vw !important; 
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.live-stats-bar .container {
   max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-around;
    padding: 0 5%;
}

.stat-item { 
    text-align: center; 
    flex: 1; 
}

.stat-item span { 
    display: block; 
    font-size: 0.75rem; 
    color: #00bfff; 
    letter-spacing: 1px; 
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-item strong { 
    display: block; 
    font-size: 2rem; 
    color: #010a1a;
    font-weight: 800;
}

.features-section { padding: 80px 0; }
.feature-card-modern {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.feature-card-modern:hover { transform: scale(1.02); }
.f-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.f-text { position: absolute; bottom: 30px; left: 30px; color: white; }
.f-text h3 { font-size: 1.8rem; font-weight: 700; }


.info-glass-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.accent-line { color: var(--primary-blue); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; }
.modern-contact-info { list-style: none; padding: 20px 0; }
.modern-contact-info li { margin-bottom: 12px; font-weight: 500; color: #444; }

.btn-map-neon {
    background: #010a1a; color: white; padding: 15px 35px;
    border-radius: 12px; text-decoration: none; font-weight: bold;
    display: inline-block; transition: 0.3s;
}

.btn-map-neon:hover { background: var(--primary-blue); box-shadow: var(--neon-shadow); color: white; }

.premium-img { width: 100%; border-radius: 25px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }

.elegant-feedback {
    background: #ffffff;
    padding: 60px 0; /* Boşlukları daralttık */
}

.mini-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #00bfff;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.slim-title {
    font-size: 2.2rem; 
    font-weight: 300; 
    color: #1a202c;
    letter-spacing: -1px;
}

.slim-title span { font-weight: 800; color: #00bfff; }

.slim-divider {
    width: 40px;
    height: 3px;
    background: #00bfff;
    margin: 15px auto 40px auto;
}

.elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.elegant-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
}

.elegant-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #00bfff;
}

.card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }

.user-initial {
    width: 36px;
    height: 36px;
    background: #f4f7f9;
    color: #00bfff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.user-meta h6 { margin: 0; font-size: 0.95rem; font-weight: 700; color: #2d3748; }
.slim-stars { color: #ffcc00; font-size: 0.75rem; letter-spacing: 1px; }

.comment-text {
    font-size: 0.88rem;
    color: #718096;
    line-height: 1.6;
    font-style: italic;
}

.elegant-actions { display: flex; justify-content: center; gap: 15px; }

.btn-slim-primary {
    background: #1a202c;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-slim-outline {
    border: 1.5px solid #1a202c;
    color: #1a202c !important;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-slim-primary:hover { background: #00bfff; border-color: #00bfff; }

.modern-header { margin-bottom: 60px; }
.glow-badge { background: rgba(0, 191, 255, 0.1); color: #00bfff; padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 0.75rem; letter-spacing: 2px; }
.ultra-title { font-size: 3rem; font-weight: 900; color: #010a1a; margin-top: 15px; }

.highlight {
    color: #00bfff; /* Fallback */
    background: linear-gradient(120deg, #00bfff 0%, #0072ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feedback-staggered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feedback-item-premium {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: 0.4s;
}

.feedback-item-premium:hover { transform: translateY(-10px); border-color: #00bfff; }

.avatar-placeholder { width: 45px; height: 45px; background: #00bfff; color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.user-info h5 { margin: 0; font-weight: 700; font-size: 1.1rem; }

.feedback-body p { color: #555; line-height: 1.7; font-style: italic; margin-top: 15px; }

.feedback-footer-actions { display: flex; justify-content: center; gap: 20px; }
.btn-glass-primary { background: #010a1a; color: white !important; padding: 15px 35px; border-radius: 15px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-glass-outline { border: 2px solid #010a1a; color: #010a1a !important; padding: 15px 35px; border-radius: 15px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-glass-primary:hover { background: #00bfff; }

.logo-link {
    display: flex;
    align-items: center;
    padding: 0; 
    color: #333 !important; 
    text-decoration: none !important; 
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.akdag-title {
    font-size: 1.2rem;
    font-weight: 800; 
    color: #ffffff; 
}

.kayak-subtitle {
    font-size: 0.8rem;
    font-weight: normal; 
    color: #ffffff;
}



.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #ffffff !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -ms-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -o-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--neon-blue);
    border-radius: 5px;
    box-shadow: var(--neon-shadow);
     transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -ms-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    -o-transition: background-color 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
   
}

.giris-link {
    background-color: #ffffff;
    color: white !important;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.giris-link:hover {
    background-color: #ffffff;
}


.header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.etkinlik-sayfasi-container {
    max-width: 900px;
}

.etkinlik-listesi {
    margin-top: 30px;
}

.etkinlik-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--accent-blue); 
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.etkinlik-card:hover {
    box-shadow: var(--neon-shadow);
}

.etkinlik-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.etkinlik-baslik h3 {
    color: #007bff;
    margin: 0;
    font-size: 1.5rem;
}

.etkinlik-tarih {
    font-weight: bold;
    color: #dc3545; 
    background-color: #f8d7da;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

.etkinlik-card p {
    color: #555;
    line-height: 1.6;
}
    
.content {
    padding: 20px;
    max-width: 1200px;
    margin :0 auto;
    min-height: 70vh;
 
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

.container {
    max-width: 650px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #007bff;
}
.container h2 {
    color: var(--primary-blue);
    
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
input[type="date"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: var(--neon-blue);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #0056b3;
    box-shadow: var(--neon-shadow);
}

.message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    font-weight: bold;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hoca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hoca-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--neon-shadow);
    transition: transform 0.3s;
}

.hoca-card:hover {
    transform: translateY(-5px);
}

.hoca-card h3 {
    color: #0056b3;
    margin-top: 0;
}

.uzmanlik {
    font-weight: bold;
    color: #28a745;
}

.deneyim {
    font-style: italic;
    color: #6c757d;
}

.stok-listesi {
    margin-top: 20px;
}

.stok-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.stok-item:last-child {
    border-bottom: none;
}

.ekipman {
    font-weight: bold;
    color: #333;
}

.adet {
    color: #007bff;
    font-size: 1.1em;
}

.login-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    /* Merkezi konumlandırma için */
    margin: 50px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #007bff;
    color: white;
}

.beklemede {
    background-color: #fff3cd;
}

.onaylandi {
    background-color: #d4edda;
}

.reddedildi {
    background-color: #f8d7da;
}

.btn-onay {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
}

.btn-red {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
}

.logout {
    float: right;
    margin-bottom: 10px;
}

.yorum-sayfasi-container {
    max-width: 850px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.yorum-form-kutusu {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 50px;
}

.yorum-form-kutusu h3 {
    font-size: 1.6rem;
    font-weight: 300; 
    color: #1a202c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.yorum-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.yorum-card:hover {
    border-color: #00bfff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}

.yorum-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 10px 0;
}

.yorum-puan {
    color: #ffcc00;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.yorum-metni {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic; 
}

.yorum-form-kutusu input, 
.yorum-form-kutusu textarea {
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 0.9rem !important;
}

.yorum-form-kutusu input:focus {
    border-color: #00bfff !important;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1) !important;
}

.yonetici-cevap {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #f0f7ff;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    font-size: 0.95em;
    color: var(--text-dark);
    position: relative;
}

.yonetici-cevap strong {
    color: var(--dark-blue);
    display: block;
    margin-bottom: 5px;
}

.yorum-form-kutusu input[type="text"],
.yorum-form-kutusu select,
.yorum-form-kutusu textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.yorum-form-kutusu input:focus, 
.yorum-form-kutusu textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: var(--neon-shadow);
}

.yorum-form-kutusu input[type="submit"] {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    font-weight: 600;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.yorum-form-kutusu input[type="submit"]:hover {
    filter: brightness(1.1);
    box-shadow: var(--neon-shadow);
}

.yorum-tarih {
    display: block;
    margin-top: 10px;
    font-size: 0.8em;
    color: #a0aec0;
    font-style: italic;
}

.hoca-ekle-kart {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.btn-yeni-ekle {
   background: linear-gradient(45deg, #00bfff, #007bff);
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex; 
    align-items: center;
    gap: 10px;
}

.btn-modern-admin:hover, .btn-yeni-ekle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.5);
    color: white;
}

.btn-right {
    display: table;
    margin-left: auto;
}

.hoca-liste-alani {
    max-height: 400px; 
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    display: none; 
    background: #fff;
}

.hoca-baslik-cubugu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 30px;
    cursor: pointer; 
    transition: 0.3s;
}

.hoca-baslik-cubugu:hover {
    background: #eef1f4;
}

.hoca-liste-alani thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #007bff;
}

.stok-konteyner {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.stok-baslik {
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.stok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.stok-kart {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    border: 1px solid #eee;
}

.stok-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.kart-ust {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ekipman-ad {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.mevcut-etiket {
    font-size: 0.85rem;
    color: #666;
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 20px;
}

.input-grubu {
    display: flex;
    gap: 10px;
}

.input-grubu input[type="number"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.btn-guncelle {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-guncelle:hover {
    background-color: #e0a800;
}

.alert {
    padding: 12px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 6px;
    margin-bottom: 20px;
}

.d-flex {
    display: flex !important;
}
.justify-content-center {
    justify-content: center !important;
}
.gap-3 {
    gap: 1rem !important; 
}

@media (max-width: 576px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
    }
}

.student-name {
    font-weight: 700;
    color: #000000;
    font-size: 16px;
}

.student-email {
    color: #00000092;
    font-size: 13px;
    font-weight: 700;
}

.course-name {
    font-weight: 700;
    color: #000000;
}

.course-date {
    font-size: 13px;
    color: #00000096;
}

.cell-instructor {
    color: #000000;
    font-weight: 700;
}

.cell-instructor i {
    color: #007bff;
}

.status-badge {
    border: 2px solid #007bff;
    padding: 5px 12px;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 11px; 
    background: #007bff;
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.status-onay {
    background: #28a745 !important;
    border-color: #28a745 !important;
}

.status-red {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
}

.status-beklemede {
    background: #007bff;
    border-color: #007bff;
}

.text-right {
    text-align: right;
}

.btn-approve-new {
    background: #28a745;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 5px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.btn-approve-new:hover {
background-color: rgb(0, 255, 51);
color: white;
}

.btn-deny-new {
    background: #dc3545;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.btn-deny-new:hover {
    background-color: #ff0000;
    color: #fff;
}

.empty-cell {
    text-align: center;
    padding: 40px;
    color: #fff;
}

.premium-accordion-container {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 30px;
    cursor: pointer; 
    transition: 0.3s;
}

.premium-header:hover {
     background: #eef1f4;
}

.premium-title {
    margin: 0;
    color: #1a1a1a; 
    font-size: 19px;
    font-weight: 700;
}

.premium-title i {
    color: #000000;
    margin-right: 12px;
}

.premium-content {
    display: none;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 20px;
}

/* Tabloyu sarmalayacak kapsayıcı için stil */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto; /* Yatayda taşarsa scroll çıkar */
    -webkit-overflow-scrolling: touch; /* Mobilde parmakla kaydırmayı yumuşatır */
}

/* Tablo hücrelerinin mobilde çok sıkışmaması için (İsteğe bağlı) */
.admin-table th, .admin-table td {
    white-space: nowrap; /* Metinlerin alt satıra geçmesini engeller, tabloyu genişletir */
}


.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 12px 15px;
    color: #ffffff;
    text-align: left;
    border-bottom: 2px solid #007bff;
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table td {
    padding: 15px;
    color: #333333; 
    border-bottom: 1px solid #f1f3f5;
    font-size: 14px;
}

.comment-box {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.reply-box {
    background: #eefdf3;
    padding: 12px;
    border: 1px solid #28a745;
    border-radius: 8px;
    color: #155724;
    margin-bottom: 15px;
}

.reply-textarea {
    width: 100%;
    background: #ffffff;
    color: #333;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
}

.reply-textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.feature-card-modern {
    position: relative !important;
    height: 450px !important;
    overflow: hidden !important;
    background-image: none !important; 
}

.slide-wrapper {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
}

.slide-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0;
    transition: opacity 1.5s ease-in-out !important;
    z-index: 1 !important;
}

.slide-img.active {
    opacity: 1 !important;
    z-index: 2 !important;
}

.f-overlay {
    z-index: 3 !important; 
}

.f-text {
    z-index: 4 !important; 
}


.buton-veri {
    background: #00aaff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 1px solid rgb(255, 255, 255);
}

.buton-veri:hover {
    background-color: #000dff;
    color: #fff;
}

.premium-header_2 {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    gap: 15px; 
}

.premium-title_2 {
    display: flex;
    align-items: center;
    gap: 10px; 
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
}

.premium-title_2 i.fa-mountain {
    color: #000000;
}

.navbar-toggler {
    border: 3px solid rgba(255, 255, 255, 0.8) !important;  
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: invert(1) brightness(100%);
}

.menu-text-white {
    color: #ffffff !important;
    font-weight: 500;
}

.user-menu-link {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.05) !important; 
}

.user-menu-link:hover .menu-text-white {
    color: #00bfff !important; 
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

.menu-icon-blue {
    color: #00bfff;
    margin-right: 12px;
    font-size: 1.1rem;
}

.menu-icon-red {
    color: #ff4d4d;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.user-menu-link:hover {
    background-color: rgba(0, 191, 255, 0.1) !important;
    color: #00bfff !important;
}

.logout-link {
    color: #ff4d4d !important;
    font-weight: 600;
}

.logout-link:hover {
    background-color: rgba(255, 77, 77, 0.219) !important;
    color: #ff0000 !important;
    text-shadow: 0 0 5px rgb(255, 0, 0);
}

.custom-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}