/* publsy.com – Custom styles (design rendszer kiegészítés a Tailwind CDN mellé) */

/* Signature gradient – Primary CTA gomb */
.signature-gradient {
    background: linear-gradient(135deg, #004e9f 0%, #0066cc 100%);
}

/* Glass header – Frosted top navigation */
.glass-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Material Symbols variáció beállítás */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Body alap */
body {
    font-family: 'Inter', sans-serif;
}
.font-headline {
    font-family: 'Manrope', sans-serif;
}

/* Modal ambient shadow (nem standard Tailwind shadow) */
.modal-shadow {
    box-shadow: 0 20px 40px rgba(25, 28, 30, 0.06);
}

/* Scrollbar stílus (webkit) */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #c1c6d5; border-radius: 2px; }

/* Állapot pill animáció (loading spinner állapotnál) */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.status-publishing .dot {
    animation: pulse-dot 1.2s infinite;
}

/* Sidebar aktív nav item vonala */
.nav-active {
    color: #004e9f;
    border-left: 3px solid #004e9f;
    background: rgba(0, 78, 159, 0.04);
    font-weight: 700;
}

/* FullCalendar egyedi stílusok */
.fc .fc-toolbar-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #191c1e;
}
.fc .fc-button-primary {
    background: linear-gradient(135deg, #004e9f 0%, #0066cc 100%);
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
}
.fc .fc-button-primary:hover {
    filter: brightness(1.1);
    background: linear-gradient(135deg, #004e9f 0%, #0066cc 100%);
    border: none;
}
.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
    background: #004e9f;
    border: none;
}
.fc-event {
    border: none !important;
    border-radius: 4px !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 2px 5px !important;
}
.fc-event.status-draft        { background: #e6e8ea; color: #414753; }
.fc-event.status-pending       { background: #d5e3fc; color: #3a485b; }
.fc-event.status-approved      { background: #89f5e7; color: #005a52; }
.fc-event.status-scheduled     { background: #89f5e7; color: #005a52; }
.fc-event.status-published     { background: #005a52; color: #fff; }
.fc-event.status-failed        { background: #ffdad6; color: #93000a; }
.fc-event.status-changes       { background: #ffdad6; color: #93000a; }

/* Drag & drop overlay */
[x-cloak] { display: none !important; }

/* Dropzone feltöltési terület */
.dropzone-area {
    border: 2px dashed rgba(193, 198, 213, 0.5);
    transition: border-color 0.2s, background 0.2s;
}
.dropzone-area.dragover,
.dropzone-area:hover {
    border-color: #004e9f;
    background: rgba(0, 78, 159, 0.03);
}
