html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/* Yorum carousel stilleri */
.comments-carousel {
    position: relative;
    padding: 20px 0;
}

.comment-item {
    padding: 15px;
}

.comment-box {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.comment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.comment-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.comment-date {
    color: #888;
    font-size: 14px;
}

.comment-content {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.carousel-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav button:hover {
    background: #f8f9fa;
    border-color: #666;
}

.carousel-nav button i {
    font-size: 18px;
    color: #666;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 767px) {
    .comment-box {
        margin: 0 5px;
    }
    
    .user-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-date {
        margin-top: 5px;
    }
}
