/* 
====================================
CSS ZORLA YENİLEME - 27.12.2024 19:00
DÜZGÜN YAKLAŞIM - CSS ÇAKIŞMA FIX!
====================================
*/

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e8f4fd;
    color: #333;
    height: 100vh;
    overflow-x: hidden;
}

.container, .main-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile-view {
    display: block;
}
.web-view {
    display: none;
}

@media (min-width: 768px) {
    .mobile-view {
        display: none !important;
    }
    .web-view {
        display: flex !important;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0;
    }
    .web-view {
        gap: 20px;
    }
}

.header {
    padding: 0;
    text-align: left;
    background: transparent;
    border-bottom: none;
}

/* Header Stilleri */
header {
    background: transparent;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    display: flex;
    align-items: center;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.channel-header-bar {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    min-height: 42px;
    box-sizing: border-box;
}

.channel-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.channel-title-clickable {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 200px;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.channel-title-clickable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.channel-title {
    font-size: 14px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.2;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: calc(1.2em * 3);
    color: white;
    text-shadow: 0 0 8px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.8);
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.channels-button {
    font-size: 14px;
    padding: 6px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.channels-button:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.app-title-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.app-title-button:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.user-info-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.close {
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #e74c3c;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 120px);
}

.channel-avatar-section {
    text-align: center;
    margin-bottom: 30px;
}

.avatar-preview {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.avatar-preview:hover {
    transform: scale(1.05);
}

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

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.avatar-preview:hover .avatar-overlay {
    opacity: 1;
}

.avatar-overlay i {
    font-size: 24px;
    margin-bottom: 8px;
}

.avatar-overlay span {
    font-size: 14px;
}

.avatar-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.avatar-actions .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.avatar-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.avatar-actions .btn:hover::before {
    left: 100%;
}

.avatar-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.avatar-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.avatar-actions .btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.avatar-actions .btn-success:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.avatar-actions .btn:disabled {
    /* YASAKLAMA KALDIRILDI - Disabled stilleri kaldırıldı */
    /* opacity: 0.6; */
    /* cursor: not-allowed; */
    /* transform: none !important; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; */
}

.image-preview-container {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.image-preview-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.image-preview-container h4 {
    margin: 0 0 20px 0;
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.image-preview-container h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.preview-image {
    max-width: 300px;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border: 3px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.image-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.image-modal.hidden {
    display: none;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.image-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.image-modal-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.image-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.image-modal-header .close {
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.image-modal-header .close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.image-modal-body {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.image-modal-body img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

.avatar-upload-form {
    margin-top: 15px;
}

.hidden {
    display: none;
}

.upload-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: none; /* Başlangıçta gizli */
    align-items: center;
    gap: 8px;
}

.upload-btn:hover {
    background: #2980b9;
}

.upload-info {
    margin-top: 15px;
    text-align: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.upload-info small {
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

.channel-info-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.info-group {
    margin-bottom: 20px;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-group label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(85vh - 100px);
    }
    
    .avatar-preview {
        width: 120px;
        height: 120px;
    }
}

.modal-tabs {
    display: flex;
    gap: 10px;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.tab-btn:hover {
    color: #3498db;
}

.tab-btn.active {
    color: #3498db;
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.list-container {
    max-height: 400px;
    overflow-y: auto;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.user-item:hover {
    background: #f8f9fa;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.user-role {
    font-size: 0.8rem;
    color: #666;
}

.user-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    align-items: flex-end !important;
    flex-shrink: 0 !important;
    min-width: 120px !important;
    margin-left: auto !important;
}

.user-actions button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 32px;
    padding: 0;
    margin: 0 2px;
}

.action-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: #3498db;
    color: white;
}

.action-btn.danger {
    background: #e74c3c;
    color: white;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.role-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rol Yetkileri Tablosu Stilleri */
.role-permissions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
}

.role-permissions-table th,
.role-permissions-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f2f5;
    vertical-align: middle;
}

.role-permissions-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
}

.role-header, .permission-header {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.role-header i, .permission-header i {
    font-size: 1rem;
    opacity: 0.9;
}

.role-permissions-table td:first-child {
    font-weight: 600;
    min-width: 180px;
    background: #f8f9fa;
}

.role-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.role-icon {
    font-size: 1.4rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.role-name {
    font-weight: 600;
    color: #2c3e50;
}

/* Rol İkonları için Gradient Stiller */
.role-superadmin { 
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}
.role-globaladmin { 
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}
.role-admin { 
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: white;
}
.role-mod { 
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}
.role-dj { 
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}
.role-member { 
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}
.role-guest { 
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
}
.role-banned { 
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.role-permissions-table input[type="number"],
.role-permissions-table input[type="checkbox"] {
    padding: 10px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.role-permissions-table input[type="number"] {
    width: 90px;
    text-align: center;
    font-weight: 600;
}

.role-permissions-table input[type="number"]:focus,
.role-permissions-table input[type="checkbox"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.role-permissions-table input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

/* Settings Header */
.settings-header {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.settings-header h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-header h3 i {
    color: #667eea;
}

.settings-description {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Info Cards */
.permissions-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8ed;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.info-header i {
    color: #667eea;
    font-size: 1.1rem;
}

.info-header strong {
    color: #2c3e50;
    font-size: 1rem;
}

.info-card ul {
    margin: 0;
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 8px;
    color: #6c757d;
    line-height: 1.4;
}

.info-card li strong {
    color: #2c3e50;
}

/* Buttons */
.permissions-actions {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.permissions-actions .btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.permissions-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.permissions-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.permissions-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.permissions-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.permissions-actions .btn-info {
    background: #17a2b8;
    color: white;
}

.permissions-actions .btn-info:hover {
    background: #138496;
    transform: translateY(-2px);
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .role-permissions-table {
        font-size: 0.8rem;
    }
    
    .role-permissions-table thead {
        display: none;
    }
    
    .role-permissions-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
        background: #f8f9fa;
    }
    
    .role-permissions-table td {
        display: block;
        text-align: left;
        padding: 8px 0;
        border: none;
    }
    
    .role-permissions-table td:last-child {
        border-bottom: none;
    }
    
    .role-permissions-table td:first-child {
        font-weight: bold;
        color: #2c3e50;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .role-permissions-table td::before {
        content: attr(data-label) ": ";
        font-weight: bold;
        color: #666;
        display: inline-block;
        width: 120px;
    }
    
    .role-permissions-table td:first-child::before {
        content: "";
        width: auto;
    }
}

/* Kanal Ayarları Stilleri */
.channel-settings {
    padding: 20px 0;
}

.settings-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.settings-loading, .list-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.settings-loading i, .list-loading i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
    display: block;
}

.settings-group {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.settings-group h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.setting-value {
    color: #666;
    margin-right: 15px;
}

.setting-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting-control input[type="text"],
.setting-control input[type="number"],
.setting-control select {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.setting-control input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.setting-control button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.setting-control button.primary {
    background: #3498db;
    color: white;
}

.setting-control button.primary:hover {
    background: #2980b9;
}

.setting-control button.danger {
    background: #e74c3c;
    color: white;
}

.setting-control button.danger:hover {
    background: #c0392b;
}

.setting-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.settings-save-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.settings-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.settings-save-btn:disabled {
    /* YASAKLAMA KALDIRILDI - Disabled stilleri kaldırıldı */
    /* opacity: 0.6; */
    /* cursor: not-allowed; */
}

.settings-error, .error-message {
    color: #e74c3c;
    background: #fdf2f2;
    border: 1px solid #fecaca;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 0.9rem;
}

/* Rol Yetkileri Özel Stilleri */
.role-permissions-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.permissions-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.permissions-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.permissions-actions .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.permissions-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.permissions-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.permissions-actions .btn-secondary {
    background: #95a5a6;
    color: white;
}

.permissions-actions .btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-1px);
}

.permissions-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #3498db;
}

.permissions-info .info-item {
    margin-bottom: 15px;
}

.permissions-info .info-item:last-child {
    margin-bottom: 0;
}

.permissions-info .info-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
}

.permissions-info .info-item ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.permissions-info .info-item li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.error {
    text-align: center;
    padding: 20px;
    color: #e74c3c;
    background: #fdf2f2;
    border-radius: 5px;
}

/* Buton Stilleri */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-1px);
}

.btn:disabled {
    /* YASAKLAMA KALDIRILDI - Disabled stilleri kaldırıldı */
    /* opacity: 0.6; */
    /* cursor: not-allowed; */
    /* pointer-events: none; */
}

/* Settings Sections */
.settings-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8ed;
}

.settings-section h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 10px;
}

.settings-section h4 i {
    color: #667eea;
}

.setting-group {
    margin-bottom: 15px;
}

.setting-group:last-child {
    margin-bottom: 0;
}

.setting-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.setting-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.setting-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.setting-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

.setting-hint i {
    color: #667eea;
    margin-right: 5px;
}

.api-help-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.api-help-link:hover {
    text-decoration: underline;
}

/* Online kullanıcılar ve rol butonları için stiller */
.online-user {
    border-left: 3px solid #28a745;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #28a745;
    border: 2px solid white;
    border-radius: 50%;
}

.user-actions button {
    white-space: nowrap;
}

/* Rol modal stilleri */
.role-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.role-modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    position: relative;
    z-index: 10001;
}

.role-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.role-modal-header h3 {
    margin: 0;
    color: #333;
}

.role-modal-header .close {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.role-modal-header .close:hover {
    color: #333;
}

.role-modal-body {
    padding: 20px;
}

.role-options {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.role-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.role-option:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.role-emoji {
    font-size: 18px;
}

.role-label {
    font-weight: 500;
    color: #333;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .user-actions {
        flex-direction: row;
        width: auto;
        min-width: 80px;
        margin-left: auto;
        flex-shrink: 0;
        gap: 4px;
    }
    
    .kick-btn, .role-btn {
        width: 28px;
        height: 28px;
        justify-content: center;
        min-width: 28px;
        font-size: 12px;
    }
    
    .role-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .role-options {
        grid-template-columns: 1fr;
    }
}

/* === KULLANICI DROPDOWN MENÜSÜ === */
.user-dropdown-toggle {
    cursor: pointer !important;
}

/* DROPDOWN HIZLI ÇÖZÜM - Ultra güçlü dropdown fix */

/* Kullanıcı dropdown menüsü için ULTRA yüksek z-index ve fixed position */
.user-dropdown-menu {
    display: none !important;
    position: fixed !important; /* absolute yerine fixed kullan */
    z-index: 999999999 !important; /* Çok yüksek z-index */
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    min-width: 140px !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 60px !important; /* Sabit pozisyon - biraz daha aşağı */
    right: 20px !important; /* Sağdan 20px */
    max-height: 200px !important;
    overflow: visible !important;
    clip: auto !important;
    transform: none !important;
}

.user-dropdown-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.user-dropdown-menu a {
    display: block !important;
    padding: 12px 16px !important;
    text-decoration: none !important;
    color: #333 !important;
    font-size: 14px !important;
    border-bottom: 1px solid #eee !important;
    transition: background-color 0.2s ease !important;
    white-space: nowrap !important;
}

.user-dropdown-menu a:hover {
    background-color: #f8f9fa !important;
    text-decoration: none !important;
}

.user-dropdown-menu a:last-child {
    border-bottom: none !important;
}

.user-dropdown-menu a.logout-link {
    color: #e74c3c !important;
}

/* Dropdown parent container - overflow sorunlarını çöz */
.user-dropdown-parent {
    position: relative !important;
    overflow: visible !important;
}

/* Tüm parent container'ların overflow sorunlarını çöz */
.user-dropdown-parent,
.user-dropdown-parent * {
    overflow: visible !important;
}

/* Header ve diğer parent elementlerin overflow'unu düzelt */
header,
.header,
.navbar,
.container,
.user-info,
.user-section {
    overflow: visible !important;
}

/* Dropdown toggle elements */
.user-dropdown-toggle {
    cursor: pointer !important;
}

/* Debug: Dropdown'un görünüp görünmediğini test etmek için */
.user-dropdown-menu.debug-visible {
    display: block !important;
    position: fixed !important;
    top: 100px !important;
    right: 100px !important;
    background: red !important;
    color: white !important;
    z-index: 999999999 !important;
    padding: 20px !important;
    border: 5px solid blue !important;
}

/* ULTRA GÜVENLİK: Her türlü CSS override'ına karşı */
html .user-dropdown-menu {
    display: none !important;
    position: fixed !important;
    z-index: 999999999 !important;
}

html .user-dropdown-menu.show {
    display: block !important;
}

/* Son çare: Inline style bile override edilirse */
.user-dropdown-menu[style*="display: none"] {
    display: none !important;
}

.user-dropdown-menu.show[style*="display: none"] {
    display: block !important;
}

@keyframes modalSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

/* Şarkı Seçenek Menüsü Stilleri */
.song-options-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.song-options-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

.song-options-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.song-options-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-options {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-options:hover {
    background: rgba(255, 255, 255, 0.2);
}

.song-options-body {
    padding: 20px;
}

.song-info {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.song-info span {
    display: block;
    margin-bottom: 5px;
}

#selectedSongTitle {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

#selectedSongRequester {
    color: #666;
    font-size: 14px;
}

.song-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: left;
    background: #f8f9fa;
    color: #333;
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.option-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.option-text {
    flex: 1;
}

/* Buton türlerine göre renkler */
.delete-btn {
    background: #fff5f5;
    color: #e53e3e;
    border: 1px solid #fed7d7;
}

.delete-btn:hover {
    background: #fed7d7;
    color: #c53030;
}

.auto-playlist-btn {
    background: #f0fff4;
    color: #38a169;
    border: 1px solid #c6f6d5;
}

.auto-playlist-btn:hover {
    background: #c6f6d5;
    color: #2f855a;
}

.blacklist-btn {
    background: #fffaf0;
    color: #dd6b20;
    border: 1px solid #feebc8;
}

.blacklist-btn:hover {
    background: #feebc8;
    color: #c05621;
}

.move-top-btn {
    background: #f7fafc;
    color: #3182ce;
    border: 1px solid #bee3f8;
}

.move-top-btn:hover {
    background: #bee3f8;
    color: #2c5282;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .song-options-content {
        width: 95%;
        margin: 20px;
    }
    
    .song-options-header {
        padding: 15px;
    }
    
    .song-options-header h3 {
        font-size: 16px;
    }
    
    .song-options-body {
        padding: 15px;
    }
    
    .option-btn {
        padding: 12px;
        font-size: 13px;
    }
    
    .option-icon {
        font-size: 16px;
        width: 20px;
    }
}

/* İstek listesi öğelerine hover efekti */
.request-queue-item {
    cursor: pointer;
    transition: all 0.2s;
}

.request-queue-item:hover {
    background-color: #f8f9fa;
}

/* Sistem Mesajları Stilleri */
.system-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    margin: 8px 0;
    padding: 12px 16px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: systemMessageSlideIn 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.system-message.error {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.system-message .message-avatar {
    flex-shrink: 0;
    margin-right: 8px;
}

.system-message .message-avatar img {
    width: 24px; /* %25 küçültüldü: 32px -> 24px */
    height: 24px; /* %25 küçültüldü: 32px -> 24px */
    border-radius: 50%;
    border: 2px solid #10b981;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.system-message.error .message-avatar img {
    border-color: #ef4444;
}

.system-message .system-icon {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.system-message.error .system-icon {
    background: #ef4444;
}

.system-message .message-content {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    white-space: normal;
    word-break: normal;
}

.system-message .message-content strong {
    color: #1f2937;
    font-weight: 600;
}

.system-message .message-content .song-title {
    color: #1f2937;
    font-weight: 600;
    margin: 0 2px;
    white-space: nowrap;
    display: inline-block;
    word-break: keep-all;
    line-height: 1.2;
}

.system-message.error .message-content .song-title {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.1);
}

.system-message .message-content .username-clickable {
    color: #10b981 !important;
    font-weight: bold;
}

.system-message.error .message-content .username-clickable {
    color: #ef4444 !important;
    font-weight: bold;
}

@keyframes systemMessageSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sistem mesajı için özel avatar */
.system-avatar {
    width: 24px; /* %25 küçültüldü: 32px -> 24px */
    height: 24px; /* %25 küçültüldü: 32px -> 24px */
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.system-avatar.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Bildirim Animasyonları */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Sistem mesajı stilleri */
.chat-message.system-message {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid #10b981;
}

.chat-message.system-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
}

/* Komut işleme bildirimi */
.command-processing-notification {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Modern bildirim */
.modern-notification {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

/* ===== HEADER ÖĞELERİ ===== */

/* Online Kullanıcı Sayısı stilleri responsive.css'de yönetiliyor */

/* Bildirim Zili */
.notification-bell, .notification-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
    margin-right: 8px;
}

.notification-bell:hover, .notification-btn:hover {
    background: rgba(0,0,0,0.1);
}

.notification-bell .bell-icon, .notification-btn .bell-icon {
    width: 18px;
    height: 18px;
    fill: #666;
}

.notification-bell .notification-badge, .notification-btn .notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Header İkon Butonları */
.header-icon-button, .header-btn {
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.header-icon-button:hover, .header-btn:hover {
    background: rgba(0,0,0,0.1);
}

.header-icon-button svg, .header-btn svg {
    width: 18px;
    height: 18px;
    fill: #666;
}

/* İndir butonu stilleri responsive.css'de yönetiliyor */

/* User Info Header Düzenlemesi */
/* Header Butonları Grubu */
.header-buttons-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 8px;
}

.user-info-container {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    height: 100%;
}

.user-info-container .online-count {
    margin-right: 4px;
}

.user-info-container .notification-bell {
    margin-right: 4px;
}

/* Responsive Header Elemanları */
@media (max-width: 768px) {
    .online-count, .online-users-count {
        padding: 3px 6px;
        font-size: 11px;
        gap: 3px;
    }
    
    .notification-bell, .notification-btn {
        padding: 4px;
    }
    
    .notification-bell .bell-icon, .notification-btn .bell-icon {
        width: 16px;
        height: 16px;
    }
    
    .notification-bell .notification-badge, .notification-btn .notification-badge {
        width: 10px;
        height: 10px;
        font-size: 7px;
    }
    
    .header-icon-button, .header-btn {
        padding: 4px;
    }
    
    .header-icon-button svg, .header-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* TEMİZLE BUTONU STİLLERİ */
.clear-history-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 10px;
}

.clear-history-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.clear-history-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .clear-history-btn {
        padding: 4px 8px;
        font-size: 11px;
        margin-left: 5px;
    }
}

/* Cache temizleme butonu artık kullanıcı menüsünde */

/* TALHA İÇİN ANA SAYFADA MOBİL GÖRÜNÜMDE BİLDİRİM BUTONUNU GİZLE */
@media (max-width: 768px) {
    /* Ana sayfada (kanal listesi) bildirim butonunu gizle */
    body:not([data-channel-view="true"]) .notification-icon {
        display: none !important;
    }
} 