/* julian_core.consent — banner + modal estilos */
/* Extraído de /root/seguros/app/static/css/main.css (sección Cookie banner) */

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #1a1a2e;
    color: #ddd;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 1rem;
}
.cookie-text { font-size: 0.88rem; flex: 1; line-height: 1.5; min-width: 250px; }
.cookie-actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.cookie-link { color: #6db3f2; font-size: 0.85rem; }
.cookie-link:hover { color: #fff; }
.cookie-btn { white-space: nowrap; }

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
}
.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.cookie-modal-panel {
    position: relative;
    max-width: 560px;
    margin: 5vh auto;
    background: #fff;
    color: #1a1a2e;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}
.cookie-modal-panel h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.cookie-modal-intro { font-size: 0.9rem; line-height: 1.5; color: #555; margin-bottom: 1.25rem; }
.cookie-cat {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid #eee;
    cursor: pointer;
}
.cookie-cat:first-of-type { border-top: none; }
.cookie-cat input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 18px; height: 18px;
}
.cookie-cat input[disabled] { cursor: not-allowed; }
.cookie-cat-text { display: flex; flex-direction: column; gap: 0.15rem; }
.cookie-cat-text strong { font-size: 0.95rem; }
.cookie-cat-text em { font-size: 0.82rem; color: #666; font-style: normal; line-height: 1.45; }
.cookie-modal-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
}
