/* Custom styles for Video Platform */

/* General */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Cards */
.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background-color: #6a11cb;
    border-color: #6a11cb;
}

.btn-primary:hover {
    background-color: #5a0db8;
    border-color: #5a0db8;
}

/* Tables */
.table th {
    background-color: #f8f9fa;
    border-top: none;
}

/* Video player */
.video-player-wrapper {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

/* Upload box */
.upload-box {
    border: 3px dashed #6a11cb;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

.upload-box:hover {
    background-color: #e9ecef;
}

/* Alerts */
.alert-custom {
    border-left: 5px solid #6a11cb;
}

/* Progress bar */
.progress {
    height: 10px;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}