.search-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.list-group-item a {
    text-decoration: none;
    color: #333;
}

.list-group-item a:hover {
    color: #007bff;
}

footer {
    background: linear-gradient(to bottom, #343a40, #212529);
}

footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #0d6efd;
}

footer ul li {
    transition: all 0.3s ease;
}

footer ul li:hover {
    transform: translateX(5px);
}

footer ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    opacity: 1;
}

footer .text-muted {
    color: rgba(255,255,255,0.5) !important;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Info alanları için özel tasarımlar */
.info-box {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.info-box.stats-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 6px solid;
}

.info-box.operator-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

.info-box.danger {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
}

.info-box.warning {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
}

.info-box.success {
    border-left-color: #198754;
    background: linear-gradient(135deg, #f1f9f1 0%, #e2f3e2 100%);
}

.info-box.info {
    border-left-color: #0dcaf0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f6ff 100%);
}

/* Metin stillerini güncelle */
.info-box .lead {
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
    color: #2c3e50;
    letter-spacing: 0.2px;
}

.info-box i {
    font-size: 1.4rem;
    margin-right: 12px;
}

/* Operatör logosu için stil */
.operator-logo {
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

/* Sayfa başlığı için yeni stiller */
.title-section {
    padding: 30px 0;
    position: relative;
}

.title-section h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.title-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Mobil cihazlar için responsive tasarım */
@media (max-width: 768px) {
    .title-section h1 {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .title-section h1 {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
}

/* Yorum formu için stiller */
.card-body {
    padding: 25px;
}

#commentForm label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

#commentForm input[type="text"],
#commentForm textarea {
    font-size: 1.1rem;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
}

#commentForm textarea {
    min-height: 120px;
}

/* Değerlendirme butonları için stil */
.btn-group .btn {
    font-size: 1.1rem;
    padding: 10px 20px;
}

/* Yorum gönder butonu için stil */
#commentForm button[type="submit"] {
    font-size: 1.1rem;
    padding: 12px 30px;
    font-weight: 500;
}

/* Yorumlar başlığı için stil */
.card-header h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding: 15px 0;
}

/* Yorum kartları için güncellenen stiller */
.comment-item {
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 12px 0;
}

.comment-item strong {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
}

.comment-item .badge {
    font-size: 0.95rem;
    padding: 8px 12px;
}

.comment-item .text-muted {
    font-size: 0.95rem;
}

.comment-item i.fas {
    font-size: 1.8rem;
}

/* Değerlendirme butonları için yeni stiller */
.rating-options {
    text-align: center;
}

.rating-options .form-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 15px;
    display: block;
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.rating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-btn i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.rating-btn span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Güvenli buton */
.rating-safe i {
    color: #198754;
}
.rating-safe:hover, input:checked + .rating-safe {
    background: #f1f9f1;
    border-color: #198754;
}

/* Spam buton */
.rating-spam i {
    color: #dc3545;
}
.rating-spam:hover, input:checked + .rating-spam {
    background: #fff5f5;
    border-color: #dc3545;
}

/* Şüpheli buton */
.rating-suspicious i {
    color: #ffc107;
}
.rating-suspicious:hover, input:checked + .rating-suspicious {
    background: #fff9e6;
    border-color: #ffc107;
}

/* Radio butonları gizle */
.btn-check {
    display: none;
}

/* Form alanları için mevcut stilleri güncelle */
#commentForm {
    max-width: 800px;
    margin: 0 auto;
}

#commentForm .form-control {
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

#commentForm .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

#commentForm button[type="submit"] {
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer .row > div {
        margin-bottom: 2rem;
    }
    
    footer .row > div:last-child {
        margin-bottom: 0;
    }
}

/* Yeni footer stilleri */
.site-footer {
    background: #2d3250;
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #5271ff;
    left: 0;
    bottom: 0;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
}

.footer-links a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #5271ff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.text-muted {
    color: rgba(255,255,255,0.5) !important;
}

.text-success {
    color: #03c988 !important;
}

.text-danger {
    color: #ff6b6b !important;
}

.text-warning {
    color: #ffd166 !important;
}

.text-info {
    color: #0dcaf0 !important;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 10px;
    }
}

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo i {
    color: #5271ff;
    font-size: 24px;
}

.logo span {
    font-size: 22px;
    font-weight: 600;
    color: #2d3250;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3250;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #5271ff;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5271ff;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #2d3250;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive Styles for Header */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        z-index: 1000;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .nav-menu a.active {
        padding-left: 10px;
        border-left: 3px solid #5271ff;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Base styles for body */
body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
} 