/* Baseline Vault Styles */
.baseline-dropzone {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.baseline-dropzone:hover {
    border-color: var(--primary);
    background: rgba(0, 195, 255, 0.05);
    transform: translateY(-2px);
}
.baseline-dropzone i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}
.baseline-dropzone h4 {
    margin: 0;
    color: white;
    font-size: 0.95rem;
}
.baseline-dropzone p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.approval-item {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
