@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background-color: #f3f4f6 !important; /* Light modern gray */
    font-family: 'Inter', sans-serif !important;
}

/* Modern Elevated Cards */
.card, .login-card {
    background: #ffffff;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

/* Vibrant Brand Buttons */
.btn-brand {
    background-color: #4f46e5; /* Vibrant Indigo */
    color: #ffffff;
    border: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.btn-brand:hover {
    background-color: #4338ca;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
}

/* Bright Financial Buttons */
.btn-gave-new {
    background-color: #ef4444; /* Bright Coral Red */
    color: white;
    border: none;
    transition: 0.2s;
}
.btn-gave-new:hover { background-color: #dc2626; color: white; transform: translateY(-1px); }

.btn-got-new {
    background-color: #10b981; /* Bright Emerald Green */
    color: white;
    border: none;
    transition: 0.2s;
}
.btn-got-new:hover { background-color: #059669; color: white; transform: translateY(-1px); }

/* Text Colors */
.text-brand { color: #4f46e5 !important; }
.text-gave { color: #ef4444 !important; }
.text-got { color: #10b981 !important; }
.text-dark-custom { color: #111827 !important; }
.text-muted-custom { color: #6b7280 !important; }

/* Premium Inputs */
.form-control {
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    color: #111827 !important;
}
.form-control:focus {
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15) !important;
    background-color: #ffffff !important;
}

/* Navbar */
.navbar-custom {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* Prevent content from hiding behind the fixed footer */
body {
    padding-bottom: 85px !important; 
}

/* Mobile App Fixed Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    display: flex;
    justify-content: space-around;
    padding: 12px 0 8px 0;
    border-top: 1px solid #e5e7eb;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #9ca3af; /* Muted gray */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.bottom-nav-item i {
    font-size: 24px;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

/* Active and Hover States */
.bottom-nav-item:hover, 
.bottom-nav-item.active {
    color: #4f46e5; /* Vibrant Indigo */
}

.bottom-nav-item:hover i, 
.bottom-nav-item.active i {
    transform: translateY(-2px);
}