﻿
:root {
    --primary-color: #a47e62;
    --primary-rgb: 164, 126, 98;
    --secondary-color: #333333;
    --light-bg: #f0f1f2;
    --white: #ffffff;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #e1e1e1;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Randevu Bölümü */
.appointment-wrap {
    padding: 80px 0;
    position: relative;
    background-color: var(--white);
}

.appointment-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.appointment-content {
    padding: 30px;
    height: 100%;
}

    .appointment-content.bg-albastor {
        background-color: var(--light-bg);
    }

/* Başlık Stilleri */
.content-title {
    margin-bottom: 20px;
}

    .content-title h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 0;
        position: relative;
    }

        .content-title h4::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color:#4a0de0;
            margin-top: 8px;
            border-radius: 3px;
        }

/* Uzmanlık Alanı Seçici Stilleri */
.expertise-selector {
    margin-bottom: 25px;
}

    .expertise-selector .custom-select {
        position: relative;
        width: 100%;
    }

.selected-expertise {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

    .selected-expertise:hover {
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
    }

    .selected-expertise .selected-info h6 {
        margin: 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--primary-color);
    }

.expertise-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow-y: hidden;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition);
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    color:#526077!important;
}

/* Hibrit Input/Dropdown Stilleri */
.input-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid #e62889;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

    .input-dropdown-wrapper:hover {
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
    }

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #526077;
    cursor: pointer;
}

    .search-input:focus {
        cursor: text;
    }

    .search-input::placeholder {
        color: #526077;
        font-weight: 500;
    }

    .search-input[readonly] {
        cursor: pointer;
    }

.dropdown-arrow {
    padding: 0 15px;
    font-size: 18px;
    color: #e62889;
    transition: var(--transition);
}

.custom-select.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Seçenekleri için güncelleme */
.expertise-options,
.psikolog-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow-y: hidden;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition);
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
}

.custom-select.active .expertise-options,
.custom-select.active .psikolog-options {
    max-height: 350px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}

/* Eski arama kutusu stillerini kaldır */
.dropdown-search {
    display: none;
}

.expertise-selector .custom-select.active .expertise-options {
    max-height: 350px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}

.expertise-option {
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition);
}

    .expertise-option:hover,
    .expertise-option.active {
        background-color: rgba(var(--primary-rgb), 0.05);
    }

.expertise-item {
    padding: 8px 0;
    width: 100%;
}

.expertise-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.expertise-info span {
    font-size: 12px;
    color: #526077;
}

/* Psikolog Seçici Stilleri */
.psikolog-selector {
    margin-bottom: 25px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.selected-psikolog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

    .selected-psikolog:hover {
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
    }

    .selected-psikolog .selected-info h6 {
        margin: 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--primary-color);
    }

    .selected-psikolog .selected-info span {
        font-size: 13px;
        color: var(--primary-color);
    }

.psikolog-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow-y: hidden;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition);
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
}

.psikolog-selector .custom-select.active .psikolog-options {
    max-height: 350px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}

.psikolog-option {
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition);
}

    .psikolog-option:hover,
    .psikolog-option.active {
        background-color: rgba(var(--primary-rgb), 0.05);
    }

.psikolog-item {
    padding: 8px 0;
    width: 100%;
}

.psikolog-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.psikolog-info span {
    font-size: 12px;
    color: #526077;
}

/* Psikolog Profili - Başlangıçta Gizli */
.psikolog-profile-section {
    opacity: 0;
    transition: all 0.4s ease;
}

    .psikolog-profile-section.visible {
        opacity: 1;
    }

.therapist-info-wrap {
    border-bottom: 1px dashed var(--light-gray);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.therapist-info {
    display: flex;
    align-items: flex-start;
}

.therapist-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 25px;
    position: relative;
    overflow: visible;
}

.therapist-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

    .therapist-img::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 50%;
        background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-rgb), 0.1));
        z-index: -1;
    }



    .therapist-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.profile-view-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #4a0de0;

    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(var(--primary-rgb), 0.3);
}

    .profile-view-btn:hover {
        background-color: #cc2379;
        color: var(--white);
        box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
        transform: translateY(-2px);
    }

    .profile-view-btn i {
        margin-right: 8px;
        font-size: 16px;
        color: var(--white);
    }



.therapist-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-group {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

    .detail-group:hover {
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.detail-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .detail-icon i {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f3ff;
        border: 3px solid #ffffff;
        box-shadow: 0 0 0 1px #4a0de0;
        border-radius: 50%;
        color: #4a0de0;
        font-size: 22px;
        font-weight: 700;
        font-family: 'Font Awesome 5 Free', sans-serif;
    }

.detail-info {
    flex: 1;
}

.detail-title {
    display: block;
    font-size: 13px;
    color: #526077;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #343a46;
    margin-bottom: 4px;
}

.detail-note {
    display: block;
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Uzmanlık Alanları */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 15px;
    font-size: 11px;
    color: var(--primary-color);
}

    .expertise-tag:hover {
        background-color: rgba(var(--primary-rgb), 0.15);
    }

    .expertise-tag i {
        margin-right: 5px;
        font-size: 12px;
    }

/* Takvim Stilleri */
.calendar-wrapper {
    margin-bottom: 25px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .calendar-header h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

.calendar-nav-btn {
    background: none;
    border: none;
    color: #4a0de0;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .calendar-nav-btn:hover {
        background-color: rgba(var(--primary-rgb), 0.1);
    }

    .calendar-nav-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
}

    .calendar-weekdays div {
        font-size: 13px;
        padding: 7px 0;
        color: #888;
        font-weight: 500;
    }

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    justify-items: center;
}

    .calendar-days div {
        width: 35px;
        height: 35px;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: default;
        border-radius: 50%;
        border: 1.5px solid transparent;
    }

    .calendar-days .empty {
        color: #ccc;
    }

    .calendar-days .disabled {
        color: #ccc;
        cursor: not-allowed;
        pointer-events: none;
    }

    .calendar-days .available {
        background-color: rgba(var(--primary-rgb), 0.08);
        cursor: pointer;
    }

        .calendar-days .available:hover {
            background-color: rgba(var(--primary-rgb), 0.15);
        }

    .calendar-days .selected {
        background-color: var(--white);
        color: var(--primary-color);
        font-weight: 600;
        border: 1.5px solid #4a0de0;
        box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.15);
    }

    .calendar-days .today:not(.selected) {
        background-color: rgba(var(--primary-rgb), 0.08);
        color: #333;
    }

    /* Müsait slot olan günler için yeşil arka plan */
    .calendar-days .has-available-slots {
        background-color: #d4edda !important;
        border: 1px solid #c3e6cb;
    }

        .calendar-days .has-available-slots:hover {
            background-color: #c3e6cb !important;
        }

        .calendar-days .has-available-slots.selected {
            background-color: var(--white) !important;
            color: var(--primary-color);
            font-weight: 600;
            border: 1.5px solid #28a745;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
        }

/* Tarih Seçimi Bilgisi */
.selected-date {
    background-color: rgba(var(--primary-rgb), 0.08);
    border-left: 3px solid #4a0de0;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color:#343a46
}

    .selected-date i {
        margin-right: 10px;
        color: var(--primary-color);
    }

/* Seans Tipi Seçimi */
.session-types-container {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.session-type {
    flex: 1;
    cursor: pointer;
}

.session-type-inner {
    background-color: #f9f9f9;
    /*border: 2px solid #4a0de0;*/
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.session-type i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #4a0de0;
}

.session-type span {
    font-size: 14px;
    font-weight: 500;
    color: #526077;
    text-align: center;
}

.session-price {
    font-size: 12px;
    color: #4a0de0;
    font-weight: 600;
    margin-top: 5px;
}

.session-type.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

    .session-type.disabled .session-type-inner {
        background-color: #f0f0f0;
        border-color: #ddd;
    }

.session-type:hover .session-type-inner {
    background-color: rgba(var(--primary-rgb), 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.session-type.selected .session-type-inner {
    background-color: var(--white);
    border: 2px solid #4a0de0;
    box-shadow: 0 3px 10px rgba(var(--primary-rgb), 0.15);
}

.session-type.selected i {
    color: #4a0de0;
}

/*.session-type.selected span {
    color: var(--primary-color);
    font-weight: 600;
}*/

/* Saat Seçimi */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.time-slot {
    background-color: #d4edda; /* Müsait slotlar için yeşil arka plan */
    border: 2px solid #c3e6cb;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: #155724; /* Yeşil yazı rengi */
}

    .time-slot:hover {
        background-color: #c3e6cb; /* Hover'da daha koyu yeşil */
    }

    .time-slot.selected {
        background-color: var(--white);
        border: 2px solid #4a0de0;
        color: #cc2379;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(var(--primary-rgb), 0.15);
    }

/* Konu Çipleri */
.topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.topic-chip {
    background-color: #f9f9f9;
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color:#526077;
}

    .topic-chip i {
        margin-right: 5px;
        font-size: 14px;
        color: #666;
    }

    .topic-chip.selected {
        background-color: var(--white);
        border: 2px solid #cc2379;
        color: var(--primary-color);
    }

        .topic-chip.selected i {
            color: var(--primary-color);
        }

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #526077;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 14px;
    resize: vertical;
    color:#526077;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .appointment-content {
        padding: 20px;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .therapist-info {
        flex-direction: column;
    }

    .therapist-img-container {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .calendar-days div {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .session-types-container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Disabled Time Slot Styles */
.time-slot.disabled {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f8d7da; /* Kırmızımsı arka plan */
    border-color: #f5c6cb;
    color: #721c24; /* Koyu kırmızı yazı */
}

/* Dolu slotlar için özel stil */
.time-slot.slot-full {
    background-color: #f8d7da; /* Kırmızımsı arka plan */
    border: 2px solid #f5c6cb;
    color: #721c24; /* Koyu kırmızı yazı */
    cursor: not-allowed;
    pointer-events: none;
}

/* Floating Pulse Bubbles Status Indicator - Elegant Edition */
.status-bubble {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    z-index: 10;
    pointer-events: none;
}

.bubble-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Bubble */
.main-bubble {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(var(--status-color-rgb), 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Inner Status Dot */
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--status-color), var(--status-color-light));
    box-shadow: 0 0 12px rgba(var(--status-color-rgb), 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: gentlePulse 2.5s ease-in-out infinite;
}

/* Floating Ring Animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(var(--status-color-rgb), 0.2);
    animation: floatingRing 3s ease-in-out infinite;
}

    .pulse-ring:nth-child(2) {
        animation-delay: 1s;
    }

/* Status Text */
.bubble-text {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 500;
    color: var(--status-color);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(var(--status-color-rgb), 0.2);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover Effect - Show Text */
.status-bubble:hover .bubble-container .bubble-text {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.status-bubble:hover .main-bubble {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(var(--status-color-rgb), 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Status Color Variations - Subtle & Elegant */
.status-bubble.online {
    --status-color: #6B7442;
    --status-color-light: #7A8450;
    --status-color-rgb: 107, 116, 66;
}

.status-bubble.busy {
    --status-color: #CD7F32;
    --status-color-light: #D2854A;
    --status-color-rgb: 205, 127, 50;
}

.status-bubble.offline {
    --status-color: #2D3748;
    --status-color-light: #4A5568;
    --status-color-rgb: 45, 55, 72;
}

    /* Offline bubble için güçlendirilmiş kurallar */
    .status-bubble.offline .status-dot {
        background: linear-gradient(135deg, #2D3748, #4A5568);
        box-shadow: 0 0 12px rgba(45, 55, 72, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }

    .status-bubble.offline .pulse-ring {
        border: 2px solid rgba(45, 55, 72, 0.2);
    }

/* Elegant Animations */
@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatingRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .status-bubble {
        width: 38px;
        height: 38px;
        top: 6px;
        right: 6px;
    }

    .main-bubble {
        width: 24px;
        height: 24px;
    }

    .status-dot {
        width: 10px;
        height: 10px;
    }

    .pulse-ring {
        width: 24px;
        height: 24px;
    }

    .bubble-text {
        font-size: 9px;
        bottom: -20px;
    }
}

/* Simple Status Text - Dynamic Colors Based on Status */
.status-text-simple {
    position: absolute;
    top: 48px;
    right: 15px;
    transform: translateX(50%);
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: center;
    z-index: 15;
    background: rgba(255, 255, 255, 0.6);
    padding: 0 2px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

/* Status-based text colors */
.therapist-img-container .status-bubble.online ~ .status-text-simple {
    color: #6B7442;
}

.therapist-img-container .status-bubble.busy ~ .status-text-simple {
    color: #CD7F32;
}

.therapist-img-container .status-bubble.offline ~ .status-text-simple {
    color: #2D3748;
}

/* GEÇICI TEST BÖLÜMÜ - Renk Karşılaştırması 
            Test CSS stilleri geçici olarak devre dışı bırakıldı. */
.offline-status-dark {
    color: #2D3748;
}

/* Footer Logo Düzeltmesi */
.footer-logo img {
    background: transparent !important;
    mix-blend-mode: normal;
    padding: 10px;
    border-radius: 8px;
  /*  background-color: rgba(255, 255, 255, 0.95) !important;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    height: auto;
}

/* Seans Türü Filtresi Stilleri */
.session-type-filter {
    position: relative;
}

.session-type-filter .custom-select {
    position: relative;
    cursor: pointer;
}

.session-type-filter .input-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    transition: var(--transition);
}

.session-type-filter .input-dropdown-wrapper:hover {
    border-color: var(--primary-color);
}

.session-type-filter .search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--dark);
    cursor: pointer;
}

.session-type-filter .dropdown-arrow {
    font-size: 18px;
    color: var(--gray);
    margin-left: 10px;
    transition: var(--transition);
}

.session-type-filter .custom-select:hover .dropdown-arrow {
    color: var(--primary-color);
}

.session-type-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.session-type-options .option-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f5f5f5;
}

.session-type-options .option-item:last-child {
    border-bottom: none;
}

.session-type-options .option-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.session-type-options .option-item i {
    font-size: 18px;
    margin-right: 10px;
    color: var(--primary-color);
}

.session-type-options .option-item span {
    font-size: 16px;
    font-weight: 500;
}

/* Müsait psikolog yok mesajı */
.no-psychologists {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #ff9800;
    background-color: #fff3e0;
    border: 1px dashed #ff9800;
    border-radius: 8px;
    margin: 10px 0;
}

.no-psychologists::before {
    content: "⚠️ ";
    margin-right: 5px;
}

/* Loading psikolog mesajı */
.loading-psychologists {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #2196F3;
    background-color: #e3f2fd;
    border: 1px dashed #2196F3;
    border-radius: 8px;
    margin: 10px 0;
}

.loading-psychologists::before {
    content: "⏳ ";
    margin-right: 5px;
}

