/* BeZoned Onboarding Custom Styles */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.fade-out {
    animation: fadeOut 0.3s ease-out;
}

/* Input focus states */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Error state for inputs */
input.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

input.error:focus {
    ring-color: #EF4444;
}

/* Success state for inputs */
input.success {
    border-color: #10B981;
}

/* Loading spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Button disabled state */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Team member row animations */
.team-member-row {
    transition: all 0.3s ease;
}

.team-member-row.removing {
    opacity: 0;
    transform: translateX(-20px);
}

/* Print styles */
@media print {
    header,
    footer,
    button {
        display: none;
    }

    .bg-white {
        box-shadow: none;
    }
}

/* Responsive logo */
@media (max-width: 640px) {
    header img {
        height: 2rem;
    }

    header h1 {
        font-size: 1.25rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #696EB1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4E5198;
}
