/* Fotonest Admin - Logic Layer & Overrides */

/* Animation - Preserved from Original */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Radio Group Overrides for Dashboard */
.radio-group {
    display: flex;
    gap: var(--space-2);
}

/* Ensure glass panels in Dashboard (if any left) map to cards */
.glass-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* Specific Helper for layout */
.service-card {
    /* Mapped to .c-card in HTML, this class handles internal layout if needed */
    display: flex;
    justify-content: space-between;
    align-items: center;
}