/* Nav Pill Active Style */
.nav-pills .nav-link.active {
    background-color: #4992FD !important; /* Aktif buton için verdiğin renk */
    color: #000; /* İkon rengi siyah */
    opacity: 0.8; /* Soluk görünüm için */
}

/* Avatar Container and Text */
.avatar-container {
    position: relative;
    width: 64px;
    height: 64px;
}

.avatar-container img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.avatar-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    padding: 2px;
}

/* Sil Butonu */
.sil-butonu {
    position: absolute;
    top: 5px;
    right: 10px;
}

/* Star Rating */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 4rem;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

/* Kutu */
.kutu {
    padding: 20px;
    border: 2px solid #ddd;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    background: #F8F9FA;
    border-radius: 8px;
}

.kutu:hover {
    border-color: #C53582;
}

.kutu.selected {
    background-color: #C53582 !important;
    color: white;
    border-color: #C53582;
}

/* Profil Kart */
.profil-kart {
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.profil-kart img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
    border: 2px solid #ddd;
}
