/* Base styles */
body {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Container to center content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styling */
header {
    background: #111;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #c8ad76;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #c8ad76;
}

/* Navigation bar */
nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #c8ad76;
}

/* Global link styles */
a {
    color: #c8ad76;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

/* Form elements */
input, button, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

input, select, textarea {
    width: 100%;
    margin-bottom: 1rem;
    background-color: #222;
    color: #fff;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border: 1px solid #c8ad76;
}

button {
    background-color: #c8ad76;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #b89b66; /* Slightly darker for hover effect */
}

/* Card component for lists (e.g., channel list) */
.card {
    background-color: #111;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c8ad76;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(200, 173, 118, 0.2);
}

.card h2 {
    color: #c8ad76;
}

/* Table styling if needed */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #111;
}

th, td {
    border: 1px solid #c8ad76;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #222;
}

/* Footer styling */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 2px solid #c8ad76;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}
