/* Basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

h1 {
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
}

h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h2 i {
    color: #667eea;
}

/* Formulier secties */
.form-section {
    background: rgba(248, 249, 250, 0.8);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    padding: 0;
}

.form-section h2 i {
    color: #667eea;
}

/* Formulier stijlen */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 1);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

select:hover {
    border-color: #667eea;
}

button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Upload specifieke stijlen */
.upload-form {
    max-width: 800px;
    margin: 0 auto;
}

.upload-button {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 1rem;
}

.upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.file-inputs {
    margin-top: 1rem;
}

.file-input-group {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.file-input-group:last-child {
    margin-bottom: 0;
}

.file-input-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Foutmeldingen */
.error {
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.success {
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(81, 207, 102, 0.3);
}

.success a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.success a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Links */
a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #764ba2;
    text-decoration: none;
}

.register-link {
    margin-top: 1.5rem;
    text-align: center;
}

/* Login/Register specifieke stijlen */
body.login-page,
body.register-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0; /* Geen padding voor volledige breedte */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.login-page .login-container,
body.register-page .register-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}

/* Footer krijgt volledige breedte op login/register pagina's */
body.login-page .footer,
body.register-page .footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}

/* Algemene container stijlen (voor niet-login/register pagina's) */
.container {
    width: 100%;
    /* max-width: 500px; */
    text-align: center;
    margin: 50px auto;
}

/* Login/Register container stijlen worden nu via body selectors gedefinieerd */

.login-header,
.register-header {
    margin-bottom: 2.5rem;
    color: white;
    text-align: center;
}

.login-header h1,
.register-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.login-header p,
.register-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

.login-form,
.register-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.login-form::before,
.register-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.login-form .form-group,
.register-form .form-group {
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.login-form .form-group label,
.register-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.login-form .form-group input,
.register-form .form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.login-form .form-group input:focus,
.register-form .form-group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.login-form .form-group i,
.register-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    color: #667eea;
    font-size: 1.1rem;
}

.login-button,
.register-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.login-button::before,
.register-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.login-button:hover::before,
.register-button:hover::before {
    left: 100%;
}

.login-button:hover,
.register-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.login-button:active,
.register-button:active {
    transform: translateY(-1px);
}

.register-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
}

.register-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.register-link a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

#formFields {
    background: rgba(248, 249, 250, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Dashboard specifieke stijlen */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: white;
}

.welcome-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.main-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: #667eea;
}

.notifications-section {
    margin-top: 0;
}

.notification-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.notification-item:last-child {
    margin-bottom: 0;
}

.notification-message {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.notification-meta {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-meta i {
    color: #667eea;
}

.no-notifications {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.show-list {
    margin-top: 1rem;
}

.show-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
    transition: all 0.2s ease;
    position: relative;
}

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

.show-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.show-item .meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.show-item .meta i {
    color: #667eea;
}

.show-item p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.show-item.selected {
    border-left-color: #51cf66;
    background: rgba(81, 207, 102, 0.1);
}

.downloads-list {
    margin-top: 1rem;
}

.download-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid #667eea;
    transition: all 0.2s ease;
}

.download-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.download-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.download-item .meta {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-item .meta i {
    color: #667eea;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-buttons .button {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Filter sectie */
.filter-section {
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

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

.filter-form .form-group {
    margin-bottom: 0;
}

/* Show lijst stijlen */
.shows-list {
    margin-top: 1rem;
}

.show-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
    transition: all 0.2s ease;
    position: relative;
}

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

.show-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.show-item .meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.show-item .meta i {
    color: #667eea;
}

.show-item p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.show-item.selected {
    border-left-color: #51cf66;
    background: rgba(81, 207, 102, 0.1);
}

/* Like buttons */
.like-button {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    backdrop-filter: blur(5px);
}

.like-button:hover {
    border-color: #667eea;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.like-button i {
    color: #ccc;
    transition: all 0.3s ease;
}

.like-button i.liked {
    color: #ff6b6b;
    animation: heartBeat 0.3s ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.like-button .like-count {
    font-weight: 500;
    min-width: 1.5rem;
    text-align: center;
}

.show-like-top {
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: content-box !important; float: right;
}

.show-like-top .like-count {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95em;
    margin-left: 0.15em;
}

.show-like-top i {
    font-size: 1em;
    margin: 0;
}

.episode-like-bottom {
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: content-box !important;
    float: right; margin-top: -50px;
}

/* Episode actions */
.episode-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.episode-actions .button {
    margin: 0;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
}

/* Maker actions */
.maker-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.maker-actions .button {
    margin: 0;
}

/* Parts info */
.parts-info {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Show actions */
.show-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.show-actions form {
    margin: 0;
}

.show-actions .button {
    margin: 0;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Episodes */
.episodes-list {
    margin-top: 1rem;
}

.episodes-list h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.episode-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.episode-item:last-child {
    margin-bottom: 0;
}

.episode-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.episode-info {
    margin-bottom: 1rem;
}

.episode-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.episode-item h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.episode-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.episode-item .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.episode-item .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* Stats */
.stats-overview {
    margin-bottom: 2rem;
}

.stats-card {
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.stats-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.stats-card p:last-child {
    margin-bottom: 0;
}

/* Stats sections */
.stats-section {
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-section:last-child {
    margin-bottom: 0;
}

.stats-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Episodes stats */
.episodes-stats {
    margin-top: 1rem;
}

.episode-stat-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.episode-stat-item:last-child {
    margin-bottom: 0;
}

.episode-stat-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Subscribers */
.subscribers-list {
    margin-top: 1rem;
}

.subscriber-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.subscriber-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.subscriber-info p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.subscriber-info p:last-child {
    margin-bottom: 0;
}

/* Downloads table */
.downloads-table {
    margin-top: 1rem;
    overflow-x: auto;
}

.downloads-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.downloads-table th,
.downloads-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.downloads-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.downloads-table tr:last-child td {
    border-bottom: none;
}

.downloads-table tr:hover td {
    background: rgba(102, 126, 234, 0.05);
}

/* Status indicators */
.status-downloaded,
.status-pending {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.status-downloaded {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    color: white;
}

.status-pending {
    background: linear-gradient(135deg, #ffd43b 0%, #fcc419 100%);
    color: #2c3e50;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 62, 80, 0.25);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.modal-content {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    max-width: 700px;
    width: 95vw;
    margin: 2rem auto;
    box-shadow: 0 8px 40px rgba(44,62,80,0.18);
    overflow: hidden;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem 1.2rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    margin-left: 1rem;
}

.close-button:hover {
    color: #ffd43b;
    transform: scale(1.1);
    background: none;
    box-shadow: none;
}

.modal-body {
    padding: 2rem;
    background: rgba(255,255,255,0.97);
    border-radius: 0 0 20px 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body ul {
    margin: 0.5rem 0 0 1.2rem;
}

/* Notification */
.notification {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.3s ease-out;
    transform: translateX(0);
    opacity: 1;
    transition: all 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    border-left: 4px solid #51cf66;
}

.notification.info {
    border-left: 4px solid #667eea;
}

/* Checkbox styles */
input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    transform: scale(1.2);
}

/* File input styles */
input[type="file"] {
    padding: 0.75rem;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.8);
}

/* Number input styles */
input[type="number"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

input[type="number"]:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 1);
}

/* Small text styles */
small {
    color: #666;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav a {
        display: block;
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .show-item .meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .episode-item .button {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .button {
        min-width: auto;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
    }
    
    .maker-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .maker-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .dashboard-container {
        padding: 1rem;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
    }
    
    .show-item .meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .episode-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .episode-actions .button {
        width: 100%;
        text-align: center;
    }
    
    .maker-actions {
        flex-direction: column;
    }
    
    .maker-actions .button {
        width: 100%;
        text-align: center;
    }
    
    .show-like-top {
        position: static;
        align-self: flex-start;
        margin-bottom: 1rem;
    }
}

@media (max-width: 700px) {
    .modal-content, .modal-body {
        padding: 1rem !important;
    }
    .modal-header {
        padding: 1rem 1rem 0.8rem 1rem;
    }
    .downloads-table th, .downloads-table td {
        font-size: 0.95rem;
        padding: 0.7rem 0.4rem;
    }
}

@media (max-width: 600px) {
    .show-like-top {
        top: 10px;
        right: 10px;
        font-size: 0.9rem;
        padding: 0.12em 0.5em 0.12em 0.4em;
        height: 28px;
    }
}

/* Loading screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 300;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page transition effect */
.page-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in;
}

.page-content.loaded {
    opacity: 1;
    transform: translateY(0);
} 

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin-top: auto;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

/* Footer styling voor login/register pagina's */
body.login-page .footer,
body.register-page .footer {
    margin-top: 2rem;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-section ul li i {
    color: #667eea;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.social-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem 1rem 1rem;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Login/Register responsive styling */
    body.login-page,
    body.register-page {
        padding: 0; /* Geen padding voor volledige breedte */
    }
    
    body.login-page .login-container,
    body.register-page .register-container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .login-form,
    .register-form {
        padding: 2rem;
        max-width: 100%;
    }
    
    .login-header h1,
    .register-header h1 {
        font-size: 2.5rem;
    }
    
    .login-form .form-group input,
    .register-form .form-group input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
    
    .login-form .form-group i,
    .register-form .form-group i {
        top: 2.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
} 