/* =============================================== */
/* GAINOVO OBJETIVOS - DARK MODERN                  */
/* Basado en gainovo-pay.css v7.2                   */
/* VERSION: 3.0 - PRIORIDAD DINÁMICA                */
/* =============================================== */

:root {
    --ghc-primary: #0F52AA;
    --ghc-primary-light: #167BFF;
    --ghc-primary-dark: #0a1a3a;
    --ghc-text: #ffffff;
    --ghc-text-light: rgba(255, 255, 255, 0.75);
    --ghc-text-dim: rgba(255, 255, 255, 0.5);
    --ghc-border: rgba(255, 255, 255, 0.12);
    --ghc-border-hover: rgba(255, 255, 255, 0.25);
    --ghc-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --ghc-shadow-hover: 0 24px 48px rgba(0, 0, 0, 0.5);
    --ghc-radius: 20px;
    --ghc-card-bg: linear-gradient(145deg, #0F2B5C, #0a1a3a);
    --ghc-success: #28a745;
    --ghc-warning: #ffc107;
    --ghc-error: #dc3545;
    --ghc-info: #167BFF;
    --ghc-priority-1: #FF6B6B;
    --ghc-priority-2: #FFA94D;
    --ghc-priority-3: #FFD93D;
    --ghc-priority-4: #6BCB77;
    --ghc-priority-5: #4D96FF;
}

/* ==================== */
/* CONTAINER */
/* ==================== */
.gainovo-objetivos-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 20px auto;
}

.gainovo-objetivos-card {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem 2rem;
    background: var(--ghc-card-bg);
    border-radius: var(--ghc-radius);
    box-shadow: var(--ghc-shadow);
    color: var(--ghc-text);
    position: relative;
    border: 1px solid var(--ghc-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.gainovo-objetivos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gainovo-objetivos-card:hover {
    border-color: var(--ghc-border-hover);
    box-shadow: var(--ghc-shadow-hover);
    transform: translateY(-2px);
}

/* ==================== */
/* HEADER */
/* ==================== */
.gainovo-objetivos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ghc-border);
}

.gainovo-objetivos-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gainovo-objetivos-header-right {
    flex-shrink: 0;
}

.gainovo-objetivos-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--ghc-text) !important;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.02em;
}

.gainovo-objetivos-count {
    font-size: 0.8rem;
    color: var(--ghc-text-dim);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--ghc-border);
}

/* Toggle ARG y Arbitraje - Estilo Switch */
.gainovo-toggle-arg,
.gainovo-toggle-arbitraje {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.3rem 0.8rem 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid var(--ghc-border);
    transition: all 0.3s ease;
    user-select: none;
}

.gainovo-toggle-arg:hover,
.gainovo-toggle-arbitraje:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--ghc-border-hover);
}

.gainovo-toggle-arg .toggle-label,
.gainovo-toggle-arbitraje .toggle-label {
    font-size: 0.7rem;
    color: var(--ghc-text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gainovo-toggle-arg .toggle-switch,
.gainovo-toggle-arbitraje .toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gainovo-toggle-arg .toggle-switch.active {
    background: var(--ghc-primary-light);
}

.gainovo-toggle-arbitraje .toggle-switch.active {
    background: #f7931a;
}

.gainovo-toggle-arg .toggle-switch .toggle-knob,
.gainovo-toggle-arbitraje .toggle-switch .toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gainovo-toggle-arg .toggle-switch.active .toggle-knob,
.gainovo-toggle-arbitraje .toggle-switch.active .toggle-knob {
    left: 20px;
}

.gainovo-toggle-arg .toggle-status,
.gainovo-toggle-arbitraje .toggle-status {
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 32px;
    transition: all 0.3s ease;
    color: var(--ghc-text-dim);
}

.gainovo-toggle-arg .toggle-status.active {
    color: var(--ghc-primary-light);
}

.gainovo-toggle-arbitraje .toggle-status.active {
    color: #f7931a;
}

/* ==================== */
/* FORMULARIO */
/* ==================== */
.gainovo-objetivo-form {
    display: grid;
    gap: 1.25rem;
}

.gainovo-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gainovo-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ghc-text-light);
}

.gainovo-form-group input[type="text"],
.gainovo-form-group input[type="number"],
.gainovo-form-group input[type="date"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ghc-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.06);
    color: var(--ghc-text);
    box-sizing: border-box;
}

.gainovo-form-group input:focus {
    outline: none;
    border-color: var(--ghc-primary-light);
    box-shadow: 0 0 0 4px rgba(15, 82, 170, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.gainovo-form-group input::placeholder {
    color: var(--ghc-text-dim);
}

.gainovo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gainovo-form-group.half {
    grid-column: span 1;
}

.gainovo-helper {
    font-size: 0.75rem;
    color: var(--ghc-text-dim);
}

/* ==================== */
/* EMOJI SELECTOR */
/* ==================== */
.gainovo-emoji-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 0.4rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid var(--ghc-border);
}

.gainovo-emoji-btn {
    padding: 0.4rem;
    font-size: 1.2rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.gainovo-emoji-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.1);
}

.gainovo-emoji-btn.active {
    border-color: var(--ghc-primary-light);
    background: rgba(22, 123, 255, 0.15);
    transform: scale(1.1);
}

/* ==================== */
/* MONTO INPUT */
/* ==================== */
.gainovo-monto-input-wrapper {
    position: relative;
}

.gainovo-monto-input-wrapper input {
    padding-right: 4rem !important;
}

.gainovo-monto-sufijo {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--ghc-primary-light);
    font-size: 0.9rem;
}

/* ==================== */
/* BOTONES */
/* ==================== */
.gainovo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.gainovo-btn-primary {
    background: linear-gradient(135deg, var(--ghc-primary), var(--ghc-primary-light));
    color: #ffffff;
    border: 1px solid var(--ghc-primary);
}

.gainovo-btn-primary:hover {
    background: linear-gradient(135deg, var(--ghc-primary-light), #4a9eff);
    border-color: var(--ghc-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 82, 170, 0.3);
}

.gainovo-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.gainovo-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ghc-text);
    border: 1px solid var(--ghc-border);
}

.gainovo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--ghc-border-hover);
}

.gainovo-btn-success {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: #ffffff;
    border: 1px solid #28a745;
}

.gainovo-btn-success:hover {
    background: linear-gradient(135deg, #34ce57, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* ==================== */
/* MENSAJES DEL FORMULARIO */
/* ==================== */
.gainovo-form-message {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.gainovo-form-message.success {
    background: rgba(40, 167, 69, 0.12);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.gainovo-form-message.error {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ==================== */
/* GRID DE OBJETIVOS */
/* ==================== */
.gainovo-objetivos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

/* ==================== */
/* ITEM DE OBJETIVO CON PRIORIDAD */
/* ==================== */
.gainovo-objetivo-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid var(--ghc-border);
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.gainovo-objetivo-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--ghc-border-hover);
}

.gainovo-objetivo-item.alcanzado {
    border-color: rgba(40, 167, 69, 0.3);
    background: rgba(40, 167, 69, 0.06);
}

.gainovo-objetivo-item.prioridad-1 {
    border-left: 4px solid var(--ghc-priority-1);
}
.gainovo-objetivo-item.prioridad-2 {
    border-left: 4px solid var(--ghc-priority-2);
}
.gainovo-objetivo-item.prioridad-3 {
    border-left: 4px solid var(--ghc-priority-3);
}
.gainovo-objetivo-item.prioridad-4 {
    border-left: 4px solid var(--ghc-priority-4);
}
.gainovo-objetivo-item.prioridad-5 {
    border-left: 4px solid var(--ghc-priority-5);
}

.gainovo-objetivo-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.gainovo-objetivo-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid var(--ghc-border);
}

.gainovo-objetivo-info {
    flex: 1;
    min-width: 0;
}

.gainovo-objetivo-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    color: var(--ghc-text);
}

.gainovo-objetivo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--ghc-text-dim);
}

.gainovo-objetivo-estado {
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.estado-en-progreso {
    background: rgba(22, 123, 255, 0.12);
    color: var(--ghc-primary-light);
    border: 1px solid rgba(22, 123, 255, 0.2);
}

.estado-alcanzado {
    background: rgba(40, 167, 69, 0.12);
    color: var(--ghc-success);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.estado-pendiente {
    background: rgba(255, 193, 7, 0.12);
    color: var(--ghc-warning);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* ==================== */
/* PRIORIDAD BADGE Y DRAG HANDLE */
/* ==================== */
.gainovo-objetivo-prioridad {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.gainovo-drag-handle {
    cursor: grab;
    padding: 0.25rem 0.5rem;
    color: var(--ghc-text-dim);
    font-size: 1.2rem;
    user-select: none;
    transition: color 0.2s ease;
}

.gainovo-drag-handle:hover {
    color: var(--ghc-text-light);
}

.gainovo-drag-handle:active {
    cursor: grabbing;
}

.gainovo-prioridad-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ghc-border);
}

.gainovo-prioridad-badge.prioridad-1 {
    background: rgba(255, 107, 107, 0.2);
    color: var(--ghc-priority-1);
    border-color: rgba(255, 107, 107, 0.3);
}
.gainovo-prioridad-badge.prioridad-2 {
    background: rgba(255, 169, 77, 0.2);
    color: var(--ghc-priority-2);
    border-color: rgba(255, 169, 77, 0.3);
}
.gainovo-prioridad-badge.prioridad-3 {
    background: rgba(255, 217, 61, 0.2);
    color: var(--ghc-priority-3);
    border-color: rgba(255, 217, 61, 0.3);
}
.gainovo-prioridad-badge.prioridad-4 {
    background: rgba(107, 203, 119, 0.2);
    color: var(--ghc-priority-4);
    border-color: rgba(107, 203, 119, 0.3);
}
.gainovo-prioridad-badge.prioridad-5 {
    background: rgba(77, 150, 255, 0.2);
    color: var(--ghc-priority-5);
    border-color: rgba(77, 150, 255, 0.3);
}

.gainovo-objetivo-eliminar {
    background: transparent;
    border: none;
    color: var(--ghc-text-dim);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.gainovo-objetivo-eliminar:hover {
    color: var(--ghc-error);
    background: rgba(220, 53, 69, 0.1);
}

/* ==================== */
/* PROGRESO */
/* ==================== */
.gainovo-objetivo-progreso {
    margin-top: 0.5rem;
}

.gainovo-progreso-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.gainovo-progreso-monto {
    font-weight: 600;
    color: var(--ghc-primary-light);
}

.gainovo-progreso-objetivo {
    color: var(--ghc-text-dim);
}

.gainovo-progreso-porcentaje {
    font-weight: 700;
    color: var(--ghc-text);
    font-size: 0.9rem;
}

.gainovo-progreso-barra {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gainovo-progreso-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ghc-primary), var(--ghc-primary-light));
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gainovo-progreso-fill.alcanzado {
    background: linear-gradient(90deg, #28a745, #34ce57);
}

.gainovo-progreso-fill.prioridad-1 {
    background: linear-gradient(90deg, var(--ghc-priority-1), #ff4757);
}
.gainovo-progreso-fill.prioridad-2 {
    background: linear-gradient(90deg, var(--ghc-priority-2), #ff6348);
}
.gainovo-progreso-fill.prioridad-3 {
    background: linear-gradient(90deg, var(--ghc-priority-3), #f9ca24);
}
.gainovo-progreso-fill.prioridad-4 {
    background: linear-gradient(90deg, var(--ghc-priority-4), #2ed573);
}
.gainovo-progreso-fill.prioridad-5 {
    background: linear-gradient(90deg, var(--ghc-priority-5), #1e90ff);
}

.gainovo-progreso-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: var(--ghc-text-dim);
}

.gainovo-progreso-requerido {
    color: var(--ghc-warning);
}

.gainovo-progreso-diario {
    color: var(--ghc-text-dim);
}

/* ==================== */
/* BONOS ASIGNADOS */
/* ==================== */
.gainovo-bonos-asignados {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--ghc-border);
}

.gainovo-bonos-asignados summary {
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--ghc-text-dim);
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.gainovo-bonos-asignados summary:hover {
    color: var(--ghc-text-light);
}

.gainovo-bonos-asignados-lista {
    display: grid;
    gap: 0.3rem;
    margin-top: 0.5rem;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.gainovo-bonos-asignados-lista::-webkit-scrollbar {
    width: 4px;
}

.gainovo-bonos-asignados-lista::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.gainovo-bonos-asignados-lista::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.gainovo-bono-asignado {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 0.75rem;
    border-left: 2px solid var(--ghc-primary-light);
}

.gainovo-bono-asignado .bono-fecha {
    color: var(--ghc-text-dim);
}

.gainovo-bono-asignado .bono-monto {
    font-weight: 600;
}

.gainovo-bono-asignado .bono-monto.usdc {
    color: var(--ghc-primary-light);
}

.gainovo-bono-asignado .bono-monto.arg {
    color: var(--ghc-success);
}

.gainovo-bono-asignado .bono-tipo {
    font-size: 0.65rem;
    color: var(--ghc-text-dim);
}

/* ==================== */
/* EMPTY STATE */
/* ==================== */
.gainovo-empty-state {
    text-align: center;
    padding: 2rem 1rem;
}

.gainovo-empty-state p {
    margin: 0.5rem 0;
}

.gainovo-empty-state .gainovo-empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 1024px) {
    .gainovo-objetivos-card {
        padding: 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .gainovo-objetivos-container {
        padding: 0 12px;
    }
    
    .gainovo-objetivos-card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }
    
    .gainovo-objetivos-title {
        font-size: 1.2rem;
    }
    
    .gainovo-form-row {
        grid-template-columns: 1fr;
    }
    
    .gainovo-form-group.half {
        grid-column: span 1;
    }
    
    .gainovo-emoji-selector {
        grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
    }
    
    .gainovo-objetivo-header {
        flex-wrap: wrap;
    }
    
    .gainovo-objetivo-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    
    .gainovo-objetivo-nombre {
        font-size: 1rem;
    }
    
    .gainovo-progreso-info {
        font-size: 0.8rem;
    }
    
    .gainovo-objetivos-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .gainovo-objetivos-header-left {
        justify-content: center;
    }
    
    .gainovo-objetivos-header-right {
        display: flex;
        justify-content: center;
    }
    
    .gainovo-toggle-arg {
        padding: 0.3rem 0.6rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gainovo-objetivos-container {
        padding: 0 8px;
    }
    
    .gainovo-objetivos-card {
        padding: 1rem 0.75rem;
        border-radius: 14px;
    }
    
    .gainovo-objetivos-title {
        font-size: 1rem;
    }
    
    .gainovo-objetivo-item {
        padding: 1rem;
    }
    
    .gainovo-progreso-info {
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }
    
    .gainovo-emoji-selector {
        grid-template-columns: repeat(auto-fill, minmax(32px, 1fr));
        gap: 0.2rem;
    }
    
    .gainovo-emoji-btn {
        font-size: 1rem;
        padding: 0.3rem;
    }
}

/* ==================== */
/* ANIMACIONES */
/* ==================== */
.gainovo-objetivo-item {
    animation: gObjFadeIn 0.4s ease forwards;
    opacity: 0;
}

.gainovo-objetivo-item:nth-child(1) { animation-delay: 0.05s; }
.gainovo-objetivo-item:nth-child(2) { animation-delay: 0.10s; }
.gainovo-objetivo-item:nth-child(3) { animation-delay: 0.15s; }
.gainovo-objetivo-item:nth-child(4) { animation-delay: 0.20s; }
.gainovo-objetivo-item:nth-child(5) { animation-delay: 0.25s; }
.gainovo-objetivo-item:nth-child(6) { animation-delay: 0.30s; }

@keyframes gObjFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* TOOLTIP */
/* ==================== */
.gainovo-tooltip {
    position: relative;
    cursor: help;
}

.gainovo-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 0.7rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
}

/* =============================================== */
/* SORTABLE GHOST CLASS */
/* =============================================== */
.sortable-ghost {
    opacity: 0.4;
    transform: scale(0.98);
}

.sortable-chosen {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ghc-primary-light);
}