body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.splash-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #3498db;
}

.btn-access {
    background-color: #3498db;
    border: none;
}

.btn-access:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1rem;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.login-container {
    max-width: 500px;
    margin: 5rem auto;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.logout-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background 0.2s ease;
}

.logout-btn:hover {
    background: #c82333;
}

.logo img {
    max-height: 60px;
}

.error-message {
    animation: fadeIn 0.3s;
}

.dashboard-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-top: 2rem;
}

#swagger-ui {
    margin-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}