/* General Dark Theme */
body {
    background-color: #212529;
    color: #f8f9fa;
}

/* Header Fix */
.navbar {
    background-color: #343a40 !important;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* THIS IS THE AGGRESSIVE LOGO FIX */
.navbar-brand img.navbar-logo {
    max-height: 40px !important; 
    width: auto !important;
}

/* Manage Page Layout */
.manage-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 72px); 
}
.manage-content {
    flex-grow: 1;
    min-height: 0; 
}
.streamer-list-scroll {
    overflow-y: auto;
    flex-grow: 1; 
}

/* Card and Form Styling */
.card {
    border: 1px solid #495057;
}
.bg-dark-2 { background-color: #343a40 !important; }
.bg-dark-3 { background-color: #495057 !important; }
.form-control, .form-select { border-color: #6c757d; }
.form-control:focus, .form-select:focus {
    background-color: #495057;
    color: #f8f9fa;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Main Content Styling */
.server-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #495057;
}
.list-group-item {
    border-color: #495057;
}

/* Live Status Card Specifics */
.live-status-scroll {
    max-height: 250px;
    overflow-y: auto;
}
.live-streamer-card {
    display: flex;
    align-items: center;
    padding: 12px; 
    margin-bottom: 8px;
    border-radius: 5px;
    background-color: #495057;
    border-left: 4px solid;
}
.live-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
}
.live-info {
    display: flex;
    flex-direction: column;
}
.live-info strong { font-size: 1rem; }
.live-info span { font-size: 0.85rem; color: #adb5bd; }
.live-status-header {
    color: #ced4da;
    font-weight: 600;
}
#live-status-container .text-muted, #live-status-container p {
    color: #ced4da !important; /* Fix for "No one is currently live" text */
}

/* Platform Colors */
.platform-icon-twitch { color: #9146FF; }
.platform-twitch { border-left-color: #9146FF; }
.platform-icon-youtube { color: #FF0000; }
.platform-youtube { border-left-color: #FF0000; }
.platform-icon-kick { color: #52E252; }
.platform-kick { border-left-color: #52E252; }
.platform-icon-tiktok { color: #00f2ea; }
.platform-tiktok { border-left-color: #00f2ea; }
.platform-icon-trovo { color: #21d464; }
.platform-trovo { border-left-color: #21d464; }

/* Landing Page */
.landing-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}