@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles can be added below this line */
.glass-effect {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
}

#progressBar {
    width: 0%;
    height: 4px;
    background-color: #4CAF50;
    transition: width 0.5s;
}

@media (max-width: 768px) {
    .sm\:flex-row {
        flex-direction: column;
    }
    .sm\:w-1\/2 {
        width: 100%;
    }
}

.max-height-calc {
    max-height: calc(100vh - 100px);
}