/* FONT VE TEMEL DEĞİŞKENLER */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --border-radius: 16px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    --white-alpha-1: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.4s;
}

/* --- TEMA RENK PALETLERİ --- */
body, body[data-theme='default'] {
    --primary-color: #8e44ad; --secondary-color: #3498db; --accent-color: #9b59b6;
    --text-color: #ecf0f1; --text-color-muted: #bdc3c7;
    --bg-color-dark: #2c3e50; --bg-color-light: #34495e; --bg-color-card: #425972;
    --success-color: #2ecc71; --error-color: #e74c3c;
    --gradient-start: var(--bg-color-dark); --gradient-end: #233142;
}
body[data-theme='red-blue'] {
    --primary-color: #c0392b; --secondary-color: #2980b9; --accent-color: #e74c3c;
    --text-color: #ecf0f1; --text-color-muted: #bdc3c7;
    --bg-color-dark: #2c2c2c; --bg-color-light: #3e3e3e; --bg-color-card: #4f4f4f;
    --success-color: #27ae60; --error-color: #e74c3c;
    --gradient-start: #3D1E20; --gradient-end: #223447;
}
body[data-theme='green-blue'] {
    --primary-color: #27ae60; --secondary-color: #2980b9; --accent-color: #2ecc71;
    --text-color: #ecf0f1; --text-color-muted: #bdc3c7;
    --bg-color-dark: #2c3e50; --bg-color-light: #34495e; --bg-color-card: #425972;
    --success-color: #2ecc71; --error-color: #e74c3c;
    --gradient-start: #142B24; --gradient-end: #1E2F40;
}
body[data-theme='green-red'] {
    --primary-color: #16a085; --secondary-color: #c0392b; --accent-color: #1abc9c;
    --text-color: #ecf0f1; --text-color-muted: #bdc3c7;
    --bg-color-dark: #333; --bg-color-light: #444; --bg-color-card: #555;
    --success-color: #27ae60; --error-color: #f39c12;
    --gradient-start: #1D3524; --gradient-end: #3D1E20;
}
body[data-theme='light-mode'] {
    --primary-color: #8d6e63; --secondary-color: #a1887f; --accent-color: #bcaaa4;
    --text-color: #3e2723; --text-color-muted: #6d4c41;
    --bg-color-dark: #efebe9; --bg-color-light: #ffffff; --bg-color-card: #f5f5f5;
    --success-color: #4caf50; --error-color: #f44336;
    --gradient-start: #f5f5f5; --gradient-end: #d7ccc8;
}
body[data-theme='dark-mode'] {
    --primary-color: #ecf0f1; --secondary-color: #bdc3c7; --accent-color: #95a5a6;
    --text-color: #ecf0f1; --text-color-muted: #95a5a6;
    --bg-color-dark: #121212; --bg-color-light: #1e1e1e; --bg-color-card: #2a2a2a;
    --success-color: #2ecc71; --error-color: #e74c3c;
    --gradient-start: #1c1c1c; --gradient-end: #000000;
}
body[data-theme='ocean'] {
    --primary-color: #0077be; --secondary-color: #00a8cc; --accent-color: #00c2d1;
    --text-color: #f0f8ff; --text-color-muted: #b0e0e6;
    --bg-color-dark: #00334e; --bg-color-light: #004a70; --bg-color-card: #005f8c;
    --success-color: #7fffd4; --error-color: #ff6347;
    --gradient-start: #001f3f; --gradient-end: #0074D9;
}
body[data-theme='sunset'] {
    --primary-color: #ff4e50; --secondary-color: #f9d423; --accent-color: #fc913a;
    --text-color: #fff; --text-color-muted: #f5f5f5;
    --bg-color-dark: #4d2e4f; --bg-color-light: #83407a; --bg-color-card: #a05096;
    --success-color: #76b852; --error-color: #ff416c;
    --gradient-start: #ff4e50; --gradient-end: #f9d423;
}


/* GENEL RESETLEME VE BODY STİLLERİ */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
body { font-family: 'Poppins', sans-serif; color: var(--text-color); background: var(--gradient-start); background-attachment: fixed; min-height: 100vh; display: flex; flex-direction: column; transition: background 0.5s ease; }

/* HEADER VE NAVİGASYON */
header { background-color: rgba(22, 28, 39, 0.5); padding: 1rem 5%; backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%); border-bottom: 1px solid var(--white-alpha-1); position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }
nav .logo { font-size: 1.8rem; font-weight: 700; color: var(--text-color); text-decoration: none; }
nav .nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
nav .nav-links a { color: var(--text-color); text-decoration: none; font-size: 1.1rem; transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; position: relative; }
nav .nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 50%; background-color: var(--primary-color); transition: all 0.3s ease-out; }
nav .nav-links a:hover::after { width: 100%; left: 0; }
nav .nav-links a:hover { color: var(--primary-color); }
.nav-avatar { width: 30px; height: 30px; border-radius: 50%; }
.header-right { display: flex; align-items: center; gap: 1rem; }

/* TEMA DEĞİŞTİRİCİ */
.theme-switcher { position: relative; }
.theme-button { background: none; border: none; color: var(--text-color); font-size: 1.5rem; cursor: pointer; padding: 5px; transition: color 0.3s ease; }
.theme-button:hover { color: var(--primary-color); }
.theme-options { display: none; position: absolute; top: 140%; right: 0; background-color: color-mix(in srgb, var(--bg-color-light), transparent 20%); backdrop-filter: blur(10px); border: 1px solid var(--white-alpha-1); border-radius: 8px; box-shadow: var(--box-shadow); overflow: hidden; z-index: 1001; min-width: 150px; opacity: 0; transform: translateY(-10px); transition: opacity 0.2s ease, transform 0.2s ease; }
.theme-switcher.active .theme-options { display: block; opacity: 1; transform: translateY(0); }
.theme-option { padding: 10px 15px; cursor: pointer; transition: background-color 0.2s ease; font-size: 0.9rem; }
.theme-option:hover { background-color: var(--primary-color); }

/* ANİMASYONLU HAMBURGER */
.hamburger { display: none; background: none; border: none; cursor: pointer; z-index: 1001; padding: 10px; }
.hamburger .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--text-color); transition: all 0.3s ease-in-out; }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ANA İÇERİK KONTEYNERİ */
.main-container { flex-grow: 1; display: flex; justify-content: center; align-items: flex-start; padding: 2rem 1.5rem; }
.main-content-wrapper { width: 100%; max-width: 1200px; padding: 0; }

/* YENİ HERO BÖLÜMÜ */
.hero-section-new { text-align: center; padding: 8vh 2rem; position: relative; overflow: hidden; border-radius: var(--border-radius); }
.hero-content-new { position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.8rem, 6vw, 4.5rem); margin-bottom: 1rem; font-weight: 800; letter-spacing: -2px; background: linear-gradient(90deg, var(--text-color), var(--text-color-muted)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; color: var(--text-color-muted); line-height: 1.6; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-new { text-decoration: none; color: white; padding: 1rem 2.5rem; border-radius: 50px; font-size: 1.1rem; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.75rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.btn-primary-new { background: linear-gradient(45deg, var(--primary-color), var(--accent-color)); }
.btn-primary-new:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px color-mix(in srgb, var(--primary-color), transparent 50%); }
.btn-secondary-new { background-color: transparent; border: 2px solid var(--text-color-muted); color: var(--text-color-muted); }
.btn-secondary-new:hover { background-color: var(--text-color-muted); color: var(--bg-color-dark); border-color: var(--text-color-muted); transform: translateY(-3px); }
.hero-background-shapes .shape { position: absolute; border-radius: 50%; background: var(--secondary-color); filter: blur(100px); opacity: 0.15; }
.shape-1 { width: 400px; height: 400px; top: -150px; left: -150px; background: var(--primary-color); }
.shape-2 { width: 300px; height: 300px; bottom: -100px; right: -100px; }
.shape-3 { width: 200px; height: 200px; top: 50%; right: 10%; background: var(--accent-color); }

/* --- YENİ: İSTATİSTİK BÖLÜMÜ --- */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.stat-card {
    background: var(--white-alpha-1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}
.stat-card.large-card {
    grid-column: span 2; /* Geniş kartlar 2 sütun kaplasın */
    text-align: left;
}
.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}
.stat-card p {
    color: var(--text-color-muted);
    font-size: 1rem;
    margin: 0;
}
.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.stat-header .stat-icon {
    margin-bottom: 0;
}
.stat-header span {
    font-size: 1.2rem;
    font-weight: 500;
}
.progress-bar-container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    height: 20px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 0%; /* JavaScript ile güncellenecek */
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 50px;
    transition: width 0.5s ease-out;
}
.progress-bar.cpu-bar {
    background: linear-gradient(90deg, var(--success-color), var(--secondary-color));
}
.stat-card #stats-ram-text, .stat-card #stats-cpu-text {
    text-align: center;
    font-size: 0.9rem;
}


/* BÖLÜM BAŞLIKLARI */
.section-title { text-align: center; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; margin-bottom: 3rem; }

/* ÖZELLİKLER BÖLÜMÜ */
.features-section { padding: 4rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background: var(--white-alpha-1); padding: 2rem; border-radius: var(--border-radius); text-align: center; border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.feature-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; display: inline-block; }
.feature-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-description { color: var(--text-color-muted); font-size: 1rem; line-height: 1.6; }

/* DASHBOARD VE MANAGE SAYFALARI (Mevcut stiller) */
.dashboard, .manage-container { background: color-mix(in srgb, var(--bg-color-light), transparent 30%); backdrop-filter: blur(10px); padding: clamp(1.5rem, 5vw, 2.5rem); border-radius: var(--border-radius); box-shadow: var(--box-shadow); width: 100%; max-width: 1000px; text-align: center; border: 1px solid var(--white-alpha-1); }
.guild-list { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.guild-card { background: var(--bg-color-dark); padding: 1.5rem; border-radius: var(--border-radius); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; }
.guild-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.guild-icon { width: 80px; height: 80px; border-radius: 50%; }
.guild-name { font-weight: 600; font-size: 1.1rem; word-break: break-word; }
.btn-manage, .btn-add { background-color: var(--secondary-color); color: white; padding: 0.7rem 1.5rem; border-radius: 5px; text-decoration: none; width: 100%; transition: background-color 0.3s ease; display: inline-flex; justify-content: center; align-items: center; gap: 0.5rem; font-weight: 600; }
.btn-add { background-color: var(--success-color); }
.btn-manage:hover { background-color: color-mix(in srgb, var(--secondary-color), black 20%); }
.btn-add:hover { background-color: color-mix(in srgb, var(--success-color), black 20%); }

/* YÖNETİM SAYFASI (Mevcut stiller) */
.manage-header { margin-bottom: 2.5rem; }
.manage-header .guild-icon-large { width: 90px; height: 90px; border-radius: 50%; margin-bottom: 1rem; border: 3px solid var(--primary-color); }
.manage-header h1 { font-size: clamp(2rem, 5vw, 2.5rem); }
.manage-header .subtitle { font-size: 1.1rem; color: var(--text-color-muted); margin-top: 0.5rem; }
.tab-container { display: flex; border-bottom: 1px solid var(--bg-color-dark); margin-bottom: 2rem; }
.tab-link { font-size: 1rem; font-weight: 600; color: var(--text-color-muted); background: none; border: none; padding: 1rem 1.5rem; cursor: pointer; transition: all 0.3s ease; border-bottom: 3px solid transparent; display: flex; align-items: center; gap: 0.5rem; }
.tab-link:hover { background: var(--bg-color-dark); color: var(--text-color); }
.tab-link.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
.tab-content { display: none; animation: fadeIn 0.5s; }
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.settings-card { background: var(--bg-color-dark); padding: 1.5rem; border-radius: var(--border-radius); text-align: left; }
.settings-card h2 { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem; }
.form-description { color: var(--text-color-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select { background-color: var(--bg-color-light); border: 1px solid var(--bg-color-card); color: var(--text-color); padding: 0.8rem; border-radius: 5px; font-size: 1rem; width: 100%; font-family: 'Poppins', sans-serif; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary-color); }
.btn, .btn-primary { text-decoration: none; color: white; padding: 0.8rem 1.5rem; border-radius: 8px; font-size: 1rem; font-weight: 600; transition: all 0.3s ease; border: 1px solid transparent; cursor: pointer; background-color: var(--primary-color); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: auto; }
.btn-secondary { text-decoration: none; color: white; padding: 0.8rem 1.5rem; border-radius: 8px; font-size: 1rem; font-weight: 600; transition: all 0.3s ease; border: 1px solid transparent; cursor: pointer; background-color: var(--secondary-color); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: auto; }
.btn:hover, .btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); filter: brightness(1.1); }
.full-width { width: 100%; }
.form-group-toggle { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; background-color: var(--bg-color-light); padding: 1rem; border-radius: 5px; }
.switch { position: relative; display: inline-block; width: 50px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; }
.slider.round { border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary-color); }
input:focus + .slider { box-shadow: 0 0 1px var(--primary-color); }
input:checked + .slider:before { transform: translateX(22px); }
.store-list, .ban-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.store-item, .ban-item { background: var(--white-alpha-1); padding: 1.25rem 1.5rem; border-radius: var(--border-radius); border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(5px); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.btn-remove { background: var(--error-color); border: none; color: white; width: 40px; height: 40px; border-radius: 8px; cursor: pointer; font-size: 1rem; transition: background-color 0.3s, transform 0.2s; flex-shrink: 0; }
.btn-remove:hover { background: color-mix(in srgb, var(--error-color), black 20%); transform: scale(1.1); }
.ban-user { display: flex; align-items: center; gap: 15px; flex-grow: 1; }
.ban-avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--primary-color); }
.user-info { display: flex; flex-direction: column; text-align: left; }
.user-info .username { font-weight: 600; font-size: 1.1rem; }
.user-info .user-id { font-size: 0.8rem; color: var(--text-color-muted); }
.ban-reason { font-style: normal; color: var(--text-color); text-align: right; flex-shrink: 0; max-width: 50%; }
.ban-reason strong { color: var(--text-color-muted); }
.empty-list-message { color: var(--text-color-muted); padding: 2rem; text-align: center; font-size: 1.1rem; background: var(--white-alpha-1); border-radius: var(--border-radius); }

/* AKORDİYON (ANA SAYFA) */
.info-container { width: 100%; max-width: 900px; margin: 4rem auto 1rem; }
.accordion { background: var(--white-alpha-1); color: var(--text-color); cursor: pointer; padding: 18px; width: 100%; border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(5px); text-align: left; outline: none; font-size: 1.2rem; font-weight: 600; transition: background-color 0.4s; margin-top: 1rem; border-radius: 10px; display: flex; align-items: center; gap: 10px; }
.accordion.active, .accordion:hover { background-color: var(--primary-color); }
.accordion::after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: auto; transition: transform 0.3s ease; }
.accordion.active::after { transform: rotate(180deg); }
.panel { padding: 0 18px; background-color: var(--bg-color-dark); max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; border-radius: 0 0 10px 10px; }
.panel p, .panel ul { margin: 1rem 0; }
.panel .command-list p { background-color: var(--white-alpha-1); padding: 10px; border-left: 3px solid var(--secondary-color); border-radius: 5px; }
.panel .command-list p strong { color: var(--secondary-color); }

/* SUNUCU AKIŞ ANİMASYONU */
.server-scroller-container { width: 100%; margin-top: 5vh; padding: 2rem 0; background-color: rgba(0,0,0,0.1); }
.scroller-title { text-align: center; font-size: 1.5rem; margin-bottom: 2rem; color: var(--text-color); }
.server-scroller { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent); mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent); }
.server-list { display: flex; width: max-content; animation: scroll 25s linear infinite; }
.scroller-item { display: flex; align-items: center; gap: 15px; background: var(--white-alpha-1); padding: 10px 20px; border-radius: var(--border-radius); margin: 0 15px; width: 300px; transition: transform 0.3s ease; }
.scroller-item:hover { transform: scale(1.05); }
.scroller-item-icon { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.scroller-item-info { display: flex; flex-direction: column; }
.scroller-item-name { font-weight: 600; color: var(--text-color); font-size: 1rem; }
.scroller-item-members { font-size: 0.9rem; color: var(--text-color-muted); }

/* FOOTER */
footer { text-align: center; padding: 2rem; background: transparent; margin-top: auto; border-top: 1px solid var(--white-alpha-1); }

/* ANİMASYONLAR */
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in-down { animation: fadeInDown 1s ease-out forwards; opacity: 0; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fadeInUp 1s ease-out forwards; opacity: 0; animation-delay: 0.3s; }
.hero-buttons.animate-fade-in-up { animation-delay: 0.6s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .header-right { gap: 0; }
    .hamburger { display: block; }
    nav .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-color-light); flex-direction: column; align-items: center; padding: 1rem 0; gap: 1.5rem; }
    nav .nav-links.active { display: flex; }
    .main-container { padding: 1.5rem 1rem; }
    .hero-title { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1.1rem; }
    .stats-section { grid-template-columns: 1fr 1fr; } /* İstatistikleri 2x2 düzene geçir */
    .stat-card.large-card { grid-column: span 2; } /* Geniş kartlar mobil'de tam genişlik kaplasın */
    .manage-header { flex-direction: column; }
    .store-item, .ban-item { flex-direction: column; align-items: flex-start; }
    .ban-reason { text-align: left; max-width: 100%; margin-top: 0.5rem; }
    .tab-container { flex-wrap: wrap; }
    .tab-link { flex-grow: 1; text-align: center; justify-content: center; }
    .scroller-item { width: 250px; }
    .server-list { animation-duration: 25s; }
}

/* YENİ EKLENEN STİL */
.btn-unban {
    background: var(--success-color);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-unban:hover {
    background: color-mix(in srgb, var(--success-color), black 20%);
}

/* OTO YANIT LİSTESİ STİLLERİ */
.autoresponse-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.autoresponse-item {
    background-color: var(--bg-color-card);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.autoresponse-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.autoresponse-content span {
    word-break: break-all;
}

.btn-remove-autoresponse {
    background: var(--error-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

/* LOG KANALI YÖNETİMİ STİLLERİ */
.button-group {
    display: flex;
    gap: 1rem;
}
.button-group .btn {
    flex-grow: 1;
}
.btn-danger {
    background-color: var(--error-color) !important;
}
.btn-danger:hover {
    background: color-mix(in srgb, var(--error-color), black 20%) !important;
}
hr {
    border: none;
    border-top: 1px solid var(--bg-color-card);
    margin: 1.5rem 0;
}
.log-channel-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}
.log-channel-list a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}
.log-channel-list a:hover {
    text-decoration: underline;
}



.btn-remove-autoresponse:hover {
    background: color-mix(in srgb, var(--error-color), black 20%);
}
