:root {
    --camino-yellow: #ffb511;
    --camino-mid-blue: #212c47;
    --camino-dark-blue: #121c33;
    --white: white;
    --body-grey: #b8c1d6;
    --red: #f21d2f;
    --black: black;

    --sunrise-yellow: #FFB511;
    --kyoto-purple: #9F4AFF;
    --pacific-blue: #00AACC;
    --caribbean-green: #26D19E;
    --sunset-coral: #F46677;
    --asphalt-900: #121C33;
    --asphalt-800: #212c47;
    --asphalt-700: #33405C;
    --asphalt-600: #4A5670;
    --asphalt-500: #747F99;
    --asphalt-400: #B8C1D6;
    --asphalt-300: #D5DCEB;
    --asphalt-200: #F5F8FF;
    --asphalt-100: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--asphalt-600)
}

.sidebar {
    height: calc(100vh - 56px);
    background-color: #f1f1f1;
    padding-top: 20px;
    position: fixed;
    width: 250px;
}
.sidebar .nav-link {
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin: 0.2rem 0;
}
.sidebar .nav-link:hover {
    background-color: #dae0e5;
}
.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: white;
}

.main-content {
    padding: 20px;
}
.card {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}
.stage-badge {
    font-size: 0.75rem;
}
.dashboard-header {
    margin-bottom: 1.5rem;
}
.icon-lg {
    font-size: 2rem;
}
.quick-stat {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    color: white;
}
.stat-database {
    background-color: #4361ee;
}
.stat-catalogue {
    background-color: #3a0ca3;
}
.stat-prompt {
    background-color: #7209b7;
}
.stat-analysis {
    background-color: #f72585;
}


/*!* ************** *!*/
/*!* Login page *!*/
/*!* ************** *!*/
.right-panel {
    background-image: url('/static/images/login_right.png')
}

.right-panel h3 {
    font-size: 60px;
    text-align: start;
    font-weight: 600;
}

.right-panel p {
    font-size: 22px;
}

.right-panel p.right-description-1 {
    color: var(--asphalt-400)
}

.btn-login {
    background: var(--camino-yellow);
    border: none;
    transition: all ease-in-out 250ms;
    color: var(--camino-dark-blue);
    border-radius: 4px;
}

.btn-login:hover {
    background-color: var(--camino-yellow);
    box-shadow: 0 0 10px rgba(255, 181, 17, .6);
}

.btn.btn-login:active {
    background-color: var(--asphalt-600);
}

.btn.btn-outline-danger {
    color: var(--red);
    border-color: var(--red);
    transition: all ease-in-out 250ms;
}

.btn.btn-outline-danger:hover {
    color: white;
    background-color: var(--red);
    box-shadow: 0 0 10px #f21d2faa;
}

.heading-3 {
    font-weight: 800;
    line-height: 115%;
    font-size: 24px;
    color: var(--camino-dark-blue)
}

.form-label {
    font-size: small;
}

/*!* ********** *!*/
/*!* Table Page *!*/
/*!* ********** *!*/

/* navbar */
.navbar {
    background-color: var(--camino-dark-blue) !important;
}

