/* Welcome Mobile CSS */

/* Mobile Welcome Styles */
.welcome-mobile {
    padding: 1rem;
}

/* Mobile responsive adjustments for welcome page */
@media (max-width: 768px) {
    .welcome-container {
        padding: 0.5rem;
    }
    
    .welcome-header {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .welcome-content {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .welcome-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .welcome-buttons .btn {
        width: 100%;
        padding: 0.75rem;
    }
}

/* Mobile navigation enhancements */
@media (max-width: 576px) {
    .welcome-mobile .navbar-brand {
        font-size: 1.1rem;
    }
    
    .welcome-mobile .nav-link {
        padding: 0.5rem 0.75rem;
    }
}

/* Loading states for mobile */
.welcome-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.welcome-loading .spinner-border {
    width: 2rem;
    height: 2rem;
}