/* FILE: style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.mobile-container {
    max-width: 420px;
    width: 100%;
    background-color: white;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Bottom Navigation */
.bottom-nav {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eee;
    z-index: 1000;
}

.bottom-nav a {
    color: #6c757d;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.bottom-nav a i {
    font-size: 22px;
    display: block;
    margin-bottom: 2px;
}

.bottom-nav a.active {
    color: #198754;
    transform: translateY(-2px);
}

/* Rounded Corners */
.rounded-4 {
    border-radius: 16px !important;
}

.rounded-top-4 {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
}

.btn:active {
    transform: scale(0.98);
}

/* Form Controls */
.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
}

/* Cards */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive */
@media (max-width: 400px) {
    .mobile-container {
        max-width: 100%;
    }
}

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

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

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

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

/* Badge Style */
.bg-success-subtle {
    background-color: #d1e7dd !important;
    color: #0f5132 !important;
}