/* --- Styles moved from inline/classes to simulate default.css --- */
        
/* Set the default font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
    font-family: 'Inter', sans-serif;
}

/* Centralized color definitions for easy theme changes */
:root {
    --color-primary-purple: #4F46E5; /* Indigo-600 */
    --color-secondary-purple: #EDE9FE; /* Indigo-100 */
    --color-dark-purple: #3730A3; /* Indigo-900 */
}

/* .login class replaces the inline body styles (bg-indigo-900, p-4, flex utilities) */
.login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Equivalent to Tailwind's bg-indigo-900 */
    background-color: #3730a3; 
    /* Equivalent to Tailwind's p-4 */
    padding: 1rem;
}
h1.title {
    font-size:20px;
}
.text-white {
    color: #fff;
}
.text-center {
    text-align: center;
}
svg {
    display: inline-block!important;
}
body.main {
    font-family: 'Inter', sans-serif;
    /* Changed background-color to use the light purple variable */
    background-color: var(--color-secondary-purple);
    padding-bottom: 4.5rem; /* Space for the fixed bottom nav bar */
    min-height: 100vh; /* Ensure full background coverage */
}
body.about {
    font-family: 'Inter', sans-serif;
    /* Changed background-color to use the light purple variable */
    background-color: var(--color-secondary-purple);
    padding-bottom: 4.5rem; /* Space for the fixed bottom nav bar */
    min-height: 100vh; /* Ensure full background coverage */
}
body.status {
    font-family: 'Inter', sans-serif;
    /* Changed background-color to use the light purple variable */
    background-color: var(--color-secondary-purple);
    padding-bottom: 4.5rem; /* Space for the fixed bottom nav bar */
    min-height: 100vh; /* Ensure full background coverage */
}
.status-item {
    background-color: #fff;
}
body.loan {
    font-family: 'Inter', sans-serif;
    /* Changed background-color to use the light purple variable */
    background-color: var(--color-secondary-purple);
    padding-bottom: 4.5rem; /* Space for the fixed bottom nav bar */
    min-height: 100vh; /* Ensure full background coverage */
}
.choosePeriod.active {
            background:#ffffff;
            color:var(--color-primary-purple)!important;
        }


body.wallet {
    font-family: 'Inter', sans-serif;
    /* Changed background-color to use the light purple variable */
    background-color: var(--color-secondary-purple);
    padding-bottom: 4.5rem; /* Space for the fixed bottom nav bar */
    min-height: 100vh; /* Ensure full background coverage */
}
.credit_score {color:#fff;margin-top:-80px;margin-bottom: 50px;margin-left: -50px;}
.credit_text {margin-left:-50px;margin-top:5px;margin-bottom: 10px;}


body.information {
    font-family: 'Inter', sans-serif;
    /* Changed background-color to use the light purple variable */
    background-color: var(--color-secondary-purple);
    padding-bottom: 4.5rem; /* Space for the fixed bottom nav bar */
    min-height: 100vh; /* Ensure full background coverage */
}

body.contact {
    font-family: 'Inter', sans-serif;
    /* Changed background-color to use the light purple variable */
    background-color: var(--color-secondary-purple);
    padding-bottom: 4.5rem; /* Space for the fixed bottom nav bar */
    min-height: 100vh; /* Ensure full background coverage */
}

/* Custom Input Color */
label, p, input, select, textarea, span {
    color: black;
}
.color-primary-purple {
    color: var(--color-primary-purple);
}
.color-secondary-purple {
    color: var(--color-secondary-purple);
}
.bg-primary-purple {
    color: var(--color-primary-purple);
}
.bg-secondary-purple {
    color: var(--color-secondary-purple);
}
.input-bg-light-purple {
    background-color: #f5f3ff; /* Very light purple/off-white */
}
.btn-primary {
    background-color: var(--color-primary-purple)!important;
}
/* Apply primary purple color to all headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary-purple);
    font-weight: bold;
    padding:10px 0;
}
.collapse {
    visibility: visible!important;
}