body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
}

.font-header {
    font-family: 'Oswald', sans-serif;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #eab308;
}

/* Yellow accent */

/* The Red "Now" Line */
.time-marker-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ef4444;
    z-index: 40;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

/* Sticky Columns */
.sticky-col {
    position: sticky;
    left: 0;
    z-index: 30;
    background-color: #1a1a1a;
}

/* Layout Utilities */
.aspect-video-lock {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: black;
}

.aspect-video-lock iframe,
.aspect-video-lock .placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Logo styling */
.channel-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s;
    object-fit: cover;
}

.channel-logo-circle:hover,
.active-logo {
    border-color: #eab308;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.3);
}

/* Drag Ghost Style */
.sortable-ghost {
    opacity: 0.4;
    background-color: #333;
}

/* Input Remove Arrows */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

[v-cloak] {
    display: none !important;
}