/* Editor - Toasts, Basic Blocks & Podium Variants */

/* Toast Notifications */
.editor-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.editor-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.editor-toast.toast-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.editor-toast.toast-error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.editor-toast.toast-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.editor-toast.toast-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #000;
}

/* Basic Block Styles (for Fix #12) */
.basic-text {
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    font-size: 18px;
    padding: 10px;
}

.basic-heading {
    font-family: 'Orbitron', sans-serif;
    color: #c41e1e;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    margin: 0;
}

.basic-heading-h1 {
    font-size: 48px;
    text-shadow: 0 0 10px #c41e1e, 0 0 20px rgba(196, 30, 30, 0.6);
}

.basic-heading-h2 {
    font-size: 32px;
    text-shadow: 0 0 8px rgba(196, 30, 30, 0.5);
}

.basic-heading-h3 {
    font-size: 24px;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.basic-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c41e1e, transparent);
    margin: 20px 0;
}

.basic-spacer {
    height: 40px;
}

/* Podium Style Variants */
.hrc-podium.style-minimal .podium-car-img { display: none; }
.hrc-podium.style-minimal .podium-car { display: none; }
.hrc-podium.style-minimal .podium-place {
    background: transparent;
    border: none;
    box-shadow: none;
}

.hrc-podium.style-classic .podium-place {
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 4px solid;
}
.hrc-podium.style-classic .podium-place.gold { border-color: #ffd700; }
.hrc-podium.style-classic .podium-place.silver { border-color: #c0c0c0; }
.hrc-podium.style-classic .podium-place.bronze { border-color: #cd7f32; }