.alert-block {
    position: relative;
    padding: 1rem 1.25rem;
    margin: 0.5rem 0;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.alert-info {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert-editor {
    flex: 1;
    outline: none;
    min-height: 1.5rem;
}

.alert-editor:empty:before {
    content: "Type your alert message...";
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
}

.alert-type-selector {
    display: flex;
    gap: 0.25rem;
}

.alert-type-btn,
.alert-icon-toggle {
    background: #f7f7f7e6;
    border: 1px solid #e3e3e3;
    color: #2c2c2c;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-type-btn:hover,
.alert-icon-toggle:hover {
    background: var(--bg-tertiary);
}

.alert-type-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Dark theme adjustments for alerts */
[data-theme="dark"] .alert-info {
    color: #6ea8fe;
    background-color: #031633;
    border-color: #084298;
}

[data-theme="dark"] .alert-warning {
    color: #ffda6a;
    background-color: #332701;
    border-color: #664d03;
}

[data-theme="dark"] .alert-danger {
    color: #ea868f;
    background-color: #2c0b0e;
    border-color: #842029;
}

[data-theme="dark"] .alert-success {
    color: #75b798;
    background-color: #051b11;
    border-color: #0f5132;
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}


.color-picker-header {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}