/* Genel Stil */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.gradient-bg {
    background: linear-gradient(135deg, #cc181e, #ff6f61);
    color: white;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Kanal Kartları */
.channel-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.channel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #eee;
}

.channel-card .card-body {
    padding: 15px;
}

/* Analitik Butonları */
.analytics-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.analytics-buttons .btn {
    flex: 1 1 calc(50% - 5px); /* İki buton yan yana */
    font-size: 12px;
    padding: 5px;
}

/* İzlenme Butonları */
.viewer-btn {
    width: 100%;
    margin-top: 10px;
    background: #28a745;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.viewer-btn:hover {
    background: #218838;
}

/* Renkli Etiketler */
.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.live {
    background: #cc181e;
    color: white;
}

.offline {
    background: #6c757d;
    color: white;
}