/* Editor.js Block Styles */
.shadow-box {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #fff;
    margin-bottom: 1rem;
}

.border-box {
    border: 1px solid #dee2e6;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.dashed-box {
    border: 2px dashed #6c757d;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

/* Dark mode adjustments if needed */
@media (prefers-color-scheme: dark) {
    .shadow-box {
        background-color: #2c3034;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    }
    .border-box {
        border-color: #495057;
    }
    .dashed-box {
        border-color: #495057;
    }
}
