body {
    background-color: #ffffff;
}
.card {
    border-radius: 10px;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.container {
    max-width: 600px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.btn {
    font-weight: 300;
    margin: 5px;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-family: 'Inter', serif !important;
}

/* Header */
.header {
    width: 100%;
    height: 80px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 50px;
}
.bigger-logo{
    height: 400px;
}

/* Login Container */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 80px;
}

.subtitle {
    font-family: 'Inter', serif !important;
    font-size: 16px;
    color: black;
    font-weight: 400;
    margin-bottom: 5px;
}

.title {
    font-size: 50px;
    font-family: 'Inter', serif !important;
    font-weight: 100;
    color: black;
    margin-bottom: 30px;
}

/* Form Styling */
.login-form {
    display: flex;
    flex-direction: column;
    width: 450px;
}

.input-field {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid black;
    margin-bottom: 10px;
}

.btn-login {
    width: 100%;
    height: 50px;
    background: black;
    color: white;
    font-family: 'Inter',serif !important;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    width: 100%;
    background: black;
    text-align: center;
    padding: 150px 0;
    color: white;
    margin-top: 100px;
}

.footer-logo {
    font-size: 50px;
    font-weight: 300;
}

.footer-text {
    font-size: 35px;
    font-weight: 200;
    font-family: 'Inter', !important;
    margin-top: 5px;
}

.footer-copyright {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.7;
}


.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
}

.header {
    width: 100%;
    height: 80px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center; /* Center logo on desktop */
    position: relative; /* Allows positioning for mobile */
    padding: 0 20px;
}

/* Logo */
.logo {
    height: 50px;
}

/* Menu Toggle (Hidden by Default on Desktop) */
.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none; /* Only appears on mobile */
    position: absolute;
    right: 20px;
}

/* Mobile Layout Fix */
@media (max-width: 768px) {
    .logo {
        height: 50px;
    }

    .menu-toggle {
        display: block; /* Show the toggle */
    }
    .bigger-logo {
        height: 125px;
    }
    .title {
        font-size: 32px;
    }

    .footer-logo {
        font-size: 32px;
    }
    .footer-text {
        font-size: 25px;
        font-weight: 200;
        margin-top: 5px;
    }
    .subtitle {
        font-family: 'Inter', serif !important;
        font-size: 13px;
        color: black;
        font-weight: 400;
        margin-bottom: 5px;
    }
    .login-form {
        display: inline-block;
        flex-direction: row;
        width: 100%;
    }
    .input-field {
        width: 70%;
        height: 50px;
        padding: 10px;
        font-size: 16px;
        border: 1px solid black;
        margin-bottom: 10px;
    }
    .btn-login {
        width: 70%;
        height: 50px;
        background: black;
        color: white;
        font-family: 'Inter', serif !important;
        font-size: 16px;
        font-weight: bold;
        border: none;
        cursor: pointer;
    }
}

/* Dashboard Styling */
.dashboard-container {
    margin-top: 80px;
    text-align: center;
}

/* Title Styling (Same as Login Page) */
.title {
    font-size: 50px;
    font-family: 'Inter', serif !important;
    font-weight: 100;
    color: black;
    margin-bottom: 30px;
}

.subtitle {
    font-family: 'Inter', serif !important;
    font-size: 16px;
    color: black;
    font-weight: 400;
    margin-bottom: 5px;
}

/* Dashboard Buttons - Styled Exactly Like "CONTINUĂ" Button */

.btn-dashboard:hover {
    background: #f1f1f1;
}

/* Logout Button - Red */
.logout-btn {
    background: red;
}

.logout-btn:hover {
    background: darkred;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }
}


/* Expenses Page Styling */
.expenses-container {
    margin-top: 80px;
    text-align: center;
}

/* Title (Matches Other Pages) */
.title {
    font-size: 50px;
    font-family: 'Inter', serif !important;
    font-weight: 100;
    color: black;
    margin-bottom: 30px;
}

/* Table Styling */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table-responsive {
    overflow-x: visible;
}
.table thead {
    background-color: black;
    color: white;
}

.table tbody tr:hover {
    background-color: #dbeafe;
}

.input-field {
    width: 100%;
    height: 40px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid black;
}

/* Buttons */
.btn-dashboard {
    width: 100%;
    max-width: 200px;
    background: black;
    font-weight: 300 !important;
    color: white;
    font-family: 'Inter', serif !important;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.btn-dashboard:hover {
    background: #333;
    color: white;
}

/* Delete Button */
.logout-btn {
    background: red;
}

.logout-btn:hover {
    background: darkred;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .table {
        font-size: 14px;
    }

    .btn-dashboard {
        max-width: 100%;
    }
    .table-responsive {
        overflow-x: auto;
    }
}


/* Stil pentru container */
.expenses-container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
}

/* Stil pentru tabel */
.table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Stil pentru celule */
.table th, .table td {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

/* Stil pentru input */
.table td input {
    width: 100%;
    max-width: 150px;
    text-align: center;
}

/* Stil pentru mobil */
@media (max-width: 768px) {
    .expenses-container {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .table {
        font-size: 14px;
    }

    .btn-dashboard {
        width: 100%;
        font-size: 14px;
    }

    .table-responsive {
        overflow-x: auto;
        max-width: 100%;
    }
}


.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    font-weight: 300;
    font-family: 'Inter', serif !important;
    background-color: black;
    border-color: black;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #000000;
    --bs-btn-border-color: #000000;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0f1013;
    --bs-btn-hover-border-color: #0f1013;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0f1013;
    --bs-btn-active-border-color: #0f1013;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: black;
    --bs-btn-disabled-border-color: black;
}