@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in-right {
    animation: slideInRight 1.5s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1.5s ease-out forwards;
}

.backdrop-blur-sm {
    backdrop-filter: blur(5px);
}
/* Ensure no overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2.25rem; /* Adjust for smaller screens */
    }
}

.whitespace-nowrap {
    white-space: nowrap;
}
.home-style{
    min-height: 100vh; /* Equivalent to min-h-screen */
    display: flex; /* Equivalent to flex */
    align-items: center; /* Equivalent to items-center */
    background-size: cover; /* Equivalent to bg-cover */
    background-position: center; /* Equivalent to bg-center */
    position: relative; /* Equivalent to relative */
    overflow: hidden; /* Equivalent to overflow-hidden */
    
}
.home-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-image: url("/assets/home-60d6c02b.png");
    filter: blur(2px);
    z-index: 0;
   
}
/* Add new styles for the logout button */
.logout-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffffff;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.logout-button:hover {
    background-color: #f0f0f0;
}

