/* Chat item aktif durumu */
.chat-item.active {
    background: rgba(88, 101, 242, 0.15) !important;
    border-left: 3px solid #5865f2;
}

.chat-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Media buttons styling */
.media-buttons {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

.media-buttons button {
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-buttons button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Archive media item styling */
.archive-media-item {
    transition: all 0.2s ease;
}

.archive-media-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Media preview styling */
#media-preview {
    border: 1px solid #444;
    border-radius: 8px;
    background: #1e2228;
    padding: 12px;
}

#media-preview img,
#media-preview video {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

/* Page Header - Index.html sections için */
.page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.page-title h1 {
    margin: 0;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title p {
    margin: 0;
    color: #b9bbbe;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 20px 15px;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .page-title p {
        font-size: 0.9rem;
    }
} 