/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Drag and drop styles */
.drag-area {
    border: 2px dashed #ccc;
    transition: all 0.2s ease;
}

.drag-area.active {
    border-color: #3b82f6;
    background-color: #f0f7ff;
}

/* Timeline track styles */
.track {
    min-height: 80px;
    background-color: #f3f4f6;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Clip styles */
.clip {
    background-color: #3b82f6;
    color: white;
    border-radius: 4px;
    padding: 4px;
    cursor: move;
    user-select: none;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.clip:hover {
    opacity: 0.9;
}

.clip.audio {
    background-color: #10b981;
}

/* Transition picker */
.transition-picker {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flex-col-on-mobile {
        flex-direction: column;
    }
}