body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.error {
    color: red;
    margin-bottom: 15px;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
    padding: 0;
}

.sidebar {
    width: 250px;
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    flex-shrink: 0;
}

.main-content {
    flex-grow: 1;
    background: #f4f4f4;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.sidebar-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 5px 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #ecf0f1;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background: #34495e;
}

.nav-menu a.active {
    background: #3498db;
}

.nav-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

header {
    background: white;
    color: #333;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout-btn {
    color: #333;
    border-color: #ddd;
}

.logout-btn:hover {
    background: #f8f9fa;
}

/* Station en DJ styling */
.station-section, .dj-section, .admin-section {
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.station-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.dj-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.djs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dj-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px;
}

.btn:hover {
    background: #0056b3;
}

.station-item {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-section {
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.station-form {
    max-width: 600px;
    margin: 0 auto;
}

.station-form h2 {
    margin-top: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.dj-form {
    max-width: 600px;
    margin: 0 auto;
}

.dj-form input[type="file"] {
    padding: 10px 0;
}

.preview-image {
    max-width: 200px;
    margin: 10px 0;
    border-radius: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

input[disabled] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.dj-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.btn-danger {
    background-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
}

.dj-item {
    position: relative;
    transition: all 0.3s ease;
}

.dj-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.request-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.request-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.dj-requests {
    margin-top: 20px;
}

.request-item {
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 4px solid #007bff;
}

.request-item.pending {
    border-left-color: #ffc107;
}

.request-item.approved {
    border-left-color: #28a745;
}

.request-item.denied {
    border-left-color: #dc3545;
}

.request-item.played {
    border-left-color: #6c757d;
}

.request-meta {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.request-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.station-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.station-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.station-card .station-logo {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.station-info {
    padding: 15px;
}

.station-info h2 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    color: #333;
}

.station-info p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.dj-count {
    margin-top: 10px !important;
    color: #007bff !important;
    font-weight: bold;
}

.embed-section {
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.embed-code-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
}

.code-block {
    position: relative;
    background: #2d2d2d;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
    overflow-x: auto;
}

.code-block code {
    display: block;
    white-space: pre-wrap;
    font-family: monospace;
    margin-right: 100px;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.9em;
}

.embed-note {
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

.live-status-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.live-status-form {
    max-width: 400px;
    margin: 0 auto;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    margin: 10px 0;
}

.status-badge.live {
    background: #dc3545;
    color: white;
}

.live-preview {
    margin-top: 15px;
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}

.nonstop-settings {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.nonstop-form {
    max-width: 500px;
    margin: 15px 0;
}

.nonstop-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.nonstop-title {
    color: #666;
    font-style: italic;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.profile-section {
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.station-name {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.bio {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.widgets-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.widget-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.widget-item h4 {
    margin-top: 0;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Modal styling */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

.preview-container {
    margin: 10px 0;
}

.preview-container img {
    max-width: 200px;
    border-radius: 8px;
}

.logout-link {
    color: #e74c3c !important;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
}

.logout-link i {
    margin-right: 10px;
}

.logout-link:hover {
    background: #c0392b !important;
    color: white !important;
}

.nonstop-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.current-image {
    margin: 10px 0;
}

.current-image img {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.help-text {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.dashboard-footer {
    margin-top: auto;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.footer-content {
    color: #6c757d;
    font-size: 0.9em;
}

.footer-content p {
    margin: 0;
}

.dashboard-content {
    flex: 1;
}

/* Help sectie styling */
.help-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.help-category {
    margin-bottom: 30px;
}

.help-category h3 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.help-category h3 i {
    margin-right: 10px;
    color: #3498db;
}

.help-content {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.help-content h4 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
}

.help-content ul {
    padding-left: 20px;
}

.help-content li {
    margin-bottom: 8px;
    color: #666;
}

.help-content p {
    color: #666;
    line-height: 1.5;
}

.temp-login-banner {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.temp-login-banner p {
    margin: 0;
}

.days-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Shows sectie styling */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.show-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.show-header {
    text-align: center;
    margin-bottom: 15px;
}

.show-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.show-details {
    margin: 15px 0;
}

.time-slot {
    color: #666;
    margin: 10px 0;
}

.time-slot i {
    margin-right: 5px;
    color: #3498db;
}

.dj-name {
    color: #666;
    font-style: italic;
    margin: 5px 0;
}

.description {
    font-size: 0.9em;
    line-height: 1.4;
    color: #666;
    margin-top: 10px;
}

.show-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
} 