/* Profile Panel Styles */

/* User Info Panel ve Bot Info Panel - Main Definitions */
#user-info-panel,
#bot-info-panel {
    width: 330px; /* 3 fotoğraf x 90px + 2 gap x 6px + padding 36px = 318px + margin */
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 16px;
    border: 1px solid #444;
    padding: 18px; /* 20px'den %10 küçük */
    overflow-y: visible; /* auto yerine visible - gereksiz scroll çubuğu yok */
    overflow-x: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex !important; /* Flex yapısı için değiştirildi */
    flex-direction: column; /* Dikey düzenleme */
    visibility: visible !important;
    opacity: 1 !important;
    height: auto; /* fit-content yerine auto */
    min-height: 500px; /* Minimum yükseklik artırıldı */
    max-height: none; /* max-height kaldırıldı */
}

#bot-info-panel {
    background: linear-gradient(145deg, #2a2a3f, #1e1e2f);
    border: 1px solid rgba(88, 101, 242, 0.3);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.2);
}

#user-info-panel:hover,
#bot-info-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

#bot-info-panel:hover {
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.3);
}



/* Profile Avatar artık photo-preview-slot ile birleştirildi - Eski stiller tamamen kaldırıldı */

/* Profile Card Body - Küçültüldü */
.profile-card-body {
    padding: 12px 16px 16px; /* Padding küçültüldü */
    position: relative;
}

/* Profile Name - Küçültüldü */
.profile-name {
    font-size: 15px; /* 18px'den küçültüldü */
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px 0; /* Margin küçültüldü */
    text-align: center;
    letter-spacing: 0.3px;
}

/* Profile Location - Küçültüldü */
.profile-location {
    font-size: 12px; /* 14px'den küçültüldü */
    color: #8b8b8b;
    text-align: center;
    margin: 0 0 12px 0; /* Margin küçültüldü */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px; /* Gap küçültüldü */
}

.profile-location i {
    font-size: 12px;
    color: #666;
}

/* Profile Stats Grid - Küçültüldü */
.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* 12px'den küçültüldü */
    margin: 12px 0; /* 16px'den küçültüldü */
}

.profile-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px; /* 8px'den küçültüldü */
    padding: 8px; /* 12px'den küçültüldü */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.profile-stat-label {
    font-size: 10px; /* 11px'den küçültüldü */
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px; /* 4px'den küçültüldü */
}

.profile-stat-value {
    font-size: 14px; /* 16px'den küçültüldü */
    font-weight: 700;
    color: #fff;
}

/* Special Credit Stat - Prominent Yellow Styling */
.profile-stat.credit-stat {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 193, 7, 0.15) 50%,
        rgba(255, 235, 59, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-stat.credit-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 235, 59, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-stat.credit-stat:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 193, 7, 0.25) 50%,
        rgba(255, 235, 59, 0.25) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.profile-stat.credit-stat:hover::before {
    opacity: 1;
}

.profile-stat.credit-stat .profile-stat-label {
    color: #ffeb3b;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.profile-stat.credit-stat .profile-stat-value {
    color: #ffd700;
    font-size: 16px; /* 18px'den küçültüldü */
    font-weight: 800;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.profile-stat.credit-stat .profile-stat-value::before {
    content: '\f51e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px; /* 14px'den küçültüldü */
    color: #ffeb3b;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Credit pulse animation for attention */
.profile-stat.credit-stat.pulse {
    animation: credit-pulse 2s infinite ease-in-out;
}

@keyframes credit-pulse {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(255, 215, 0, 0.2),
            0 0 0 0 rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 8px 20px rgba(255, 215, 0, 0.4),
            0 0 0 8px rgba(255, 215, 0, 0.1),
            inset 0 1px 0 rgba(255, 215, 0, 0.2);
    }
}

/* Special City Stat - Box Styling */
.profile-stat.city-stat {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.15) 0%, 
        rgba(118, 75, 162, 0.15) 50%,
        rgba(102, 126, 234, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-stat.city-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-stat.city-stat:hover {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.25) 0%, 
        rgba(118, 75, 162, 0.25) 50%,
        rgba(102, 126, 234, 0.25) 100%);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 
        0 8px 20px rgba(102, 126, 234, 0.3),
        0 0 20px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(102, 126, 234, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.profile-stat.city-stat:hover::before {
    opacity: 1;
}

.profile-stat.city-stat .profile-stat-label {
    color: #a8b5ff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.profile-stat.city-stat .profile-stat-value {
    color: #667eea;
    font-size: 16px;
    font-weight: 800;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.profile-stat.city-stat .profile-stat-value::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #a8b5ff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}



/* Empty State */
.profile-empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #8b8b8b;
}

.profile-empty-state i {
    font-size: 32px;
    margin-bottom: 12px;
    color: #666;
}

.profile-empty-state h4 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 14px;
}

.profile-empty-state p {
    margin: 0;
    font-size: 12px;
    color: #8b8b8b;
    line-height: 1.4;
}

/* === NOTES SYSTEM STYLES === */

/* Notes Section - Flex yapısı */
.profile-notes {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 16px;
    margin: 10px 0 8px 0; /* Margin küçültüldü */
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Kalan alanı doldurması için */
    min-height: 350px; /* Minimum yükseklik artırıldı */
}

.profile-notes-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px; /* Margin küçültüldü */
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0; /* Boyut sabit kalsın */
}

.profile-notes-title i {
    font-size: 12px;
    color: #ffa726;
}

/* Notes Container - Dinamik büyüme */
.notes-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1; /* Kalan alanı doldurması için */
    min-height: 200px; /* Minimum yükseklik */
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 6px; /* 8px'den küçültüldü */
    max-height: 400px; /* Dinamik yükseklik için artırıldı */
    min-height: 60px; /* Minimum yükseklik */
    overflow-y: auto;
    margin-bottom: 8px; /* 10px'den küçültüldü */
    padding-right: 6px;
    flex-grow: 1; /* Alanı doldurması için */
}

/* Custom Scrollbar for Notes */
.notes-list::-webkit-scrollbar {
    width: 6px;
}

.notes-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.notes-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.notes-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Note Item - Kompakt tasarım */
.note-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.note-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.note-item.demo {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffb74d;
    font-style: italic;
    font-size: 12px;
    text-align: center;
    padding: 14px;
}

.note-content {
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.3;
    margin-bottom: 3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.note-text {
    font-size: 12px; /* 13px'den küçültüldü */
    color: #e0e0e0;
    line-height: 1.4; /* 1.5'den küçültüldü */
    margin-bottom: 6px; /* 8px'den küçültüldü */
    word-wrap: break-word;
}

.note-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.note-date {
    font-size: 10px;
    color: #888;
    font-weight: 500;
}

.note-author {
    font-size: 9px;
    color: #aaa;
    font-weight: 500;
    margin-right: 8px;
}

.note-delete-btn {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    padding: 4px 6px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 9px;
    transition: all 0.2s ease;
    opacity: 0.7;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-delete-btn:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.5);
    opacity: 1;
    transform: scale(1.1);
}

/* Empty and Error States */
.note-empty {
    font-size: 11px;
    color: #666;
    text-align: center;
    padding: 16px;
    font-style: italic;
}

.note-error {
    font-size: 11px;
    color: #f44336;
    text-align: center;
    padding: 16px;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 6px;
}

/* Add Note Container - Sabit boyut */
.add-note-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0; /* Boyut sabit kalsın */
    margin-top: auto; /* Alttan yaslanması için */
}

.note-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 12px;
    resize: vertical;
    min-height: 40px;
    max-height: 100px;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1.4;
}

.note-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.note-input::placeholder {
    color: #888;
    font-style: italic;
}

.add-note-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    height: 36px;
}

.add-note-btn:hover {
    background: linear-gradient(135deg, #7289da, #8a5fb8);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.add-note-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Profile Header Styles - Yeni Info Panel İçin */
/* Profile header artık photos-header-row ile değiştirildi */
.profile-header {
    display: none; /* Artık kullanılmıyor */
}

.profile-header .profile-avatar {
    display: none; /* Artık kullanılmıyor */
}

.profile-header .profile-avatar img {
    display: none; /* Artık kullanılmıyor */
}

/* Profile status - Artık profile-info içinde */
/* Profile badges - Artık profile-info içinde */

/* Profile header artık photos-header-row ile değiştirildi */
.profile-email {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    animation: premium-glow 2s ease-in-out infinite alternate;
}

.badge.verified {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
}

.badge.bot {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: #fff;
}

.badge.active {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
}

.badge.inactive {
    background: linear-gradient(135deg, #f44336, #ef5350);
    color: #fff;
}

/* Standard badge stili */
.badge.standard {
    background: linear-gradient(135deg, #666, #888);
    color: #fff;
    border: 1px solid #555;
}

/* Profile Details */
.profile-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-section h4 i {
    font-size: 10px;
}

.profile-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 12px;
}

.profile-field:last-child {
    margin-bottom: 0;
}

.field-label {
    color: #888;
    font-weight: 500;
}

.field-value {
    color: #fff;
    font-weight: 400;
}

.status-indicator {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
}

.status-indicator.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status-indicator.inactive {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.profile-bio {
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

/* Bot Features */
.bot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.feature-tag {
    font-size: 9px;
    padding: 2px 6px;
    background: rgba(88, 101, 242, 0.2);
    color: #a8b5ff;
    border-radius: 6px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    display: flex;
    align-items: center;
    gap: 2px;
}

.feature-tag i {
    font-size: 8px;
}

/* Bot Badge */
.bot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bot-indicator {
    font-size: 10px;
    color: #4ECDC4;
    font-weight: 500;
}

/* Credits değeri için özel stil */
.credits-value {
    color: #ffd700 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

.add-note-btn i {
    font-size: 9px;
}

/* Premium badge glow animasyonu */
@keyframes premium-glow {
    0%, 100% {
        box-shadow: 
            0 0 5px rgba(255, 215, 0, 0.3),
            0 0 10px rgba(255, 215, 0, 0.2),
            0 0 15px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 10px rgba(255, 215, 0, 0.6),
            0 0 20px rgba(255, 215, 0, 0.4),
            0 0 30px rgba(255, 215, 0, 0.2);
    }
}

/* Profile Info - Fotoğrafların ÜSTÜNDEkİ bilgiler */
.profile-info {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    order: -1; /* Fotoğraflardan önce gelsin */
}

.profile-info h3 {
    font-size: 16px; /* 18px'den küçültüldü */
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
    line-height: 1.2;
    max-width: 100%;
    text-align: left;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-badges {
    display: flex;
    gap: 6px; /* 8px'den küçültüldü */
    justify-content: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.profile-status {
    width: 10px; /* 12px'den küçültüldü */
    height: 10px; /* 12px'den küçültüldü */
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #333;
}

.profile-status.online {
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.profile-status.offline {
    background: #666;
}

/* ===== PHOTOS PREVIEW ROW - Header'da yan yana ===== */

.photos-header-row {
    display: flex;
    gap: 6px; /* Daha kompakt gap */
    margin-bottom: 16px;
    flex-shrink: 0; /* Boyut sabit kalsın */
    align-items: center; /* Ortadan hizala - simetrik için */
    justify-content: flex-start; /* Soldan başla */
}

/* compact-photos-preview artık kullanılmıyor - tüm fotoğraflar aynı seviyede */

/* TÜM FOTOĞRAFLAR İÇİN TEK SINIF - Profile photo da dahil */
.photo-preview-slot {
    width: 90px; /* Sabit 90px genişlik */
    height: 90px; /* Sabit 90px yükseklik */
    flex-shrink: 0; /* Boyut sabit kalsın */
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2); /* Tüm fotoğraflar aynı border */
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    display: flex; /* Flex yapısı */
    align-items: center; /* İçerik ortala */
    justify-content: center; /* İçerik ortala */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Tüm fotoğraflar aynı shadow */
}

.photo-preview-slot:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); /* Hover için daha güçlü shadow */
}

.photo-preview-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fotoğrafın tamamı gözükecek, kırpılmayacak */
    object-position: center; /* Ortadan hizala */
    border-radius: 6px; /* İç border radius */
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.1); /* Boş alan için hafif arkaplan */
}

.photo-preview-slot:hover img {
    transform: scale(1.05);
}

/* Bot indicator - Profile photo için */
.photo-preview-slot .bot-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #4ECDC4;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.empty-photo-slot {
    width: 90px; /* Sabit boyut */
    height: 90px; /* Sabit boyut */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2); /* Dashed border daha görünür */
    border-radius: 8px;
    flex-shrink: 0; /* Boyut sabit kalsın */
    flex-direction: column; /* İkon ve text dikey */
    gap: 4px; /* İkon ve text arası boşluk */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Diğerleri ile aynı shadow */
}

.empty-photo-slot i {
    font-size: 14px; /* 18px'den küçültüldü */
    color: #666;
}

.empty-photo-slot span {
    font-size: 10px;
    color: #666;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .compact-photos-preview {
        gap: 6px;
        margin: 10px 0;
    }
    
}

@media (max-width: 480px) {
    .compact-photos-preview {
        gap: 4px;
        margin: 8px 0;
    }
    
    .photo-preview-slot {
        border-radius: 6px;
    }
    
    .empty-photo-slot i {
        font-size: 16px;
    }
} 
