:root {
    --primary-color: #1E1E24; /* Black */
    --secondary-color: #FFC107; /* Yellow */
    --white-color: #FFFFFF;
    --hero-left-bg: #16161A;
    --hero-right-bg: #F4F6F9;
    --hero-accent: var(--secondary-color);
}

body {
    background-color: #F5F5F5;
}

.app-bar-logo {
    margin-top: 5px;
    padding: 10px;
    width: 140px;
}

.app-bar-logo-text {
    color: var(--secondary-color);
    font-size: 20px;
    padding-left: 10px;
}

.cta-button {
    box-shadow: 0 6px 18px -4px rgba(255,193,7,0.45);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.95rem 2.2rem;
    transition: transform .18s ease, box-shadow .18s ease;
    border-radius: 12px;
}

.cta-button:hover {
    box-shadow: 0 10px 28px -6px rgba(255,193,7,0.55);
    transform: translateY(-3px);
}

.cta-wrapper {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.08),
        0 4px 10px -2px rgba(0,0,0,0.12),
        0 18px 32px -8px rgba(0,0,0,0.18);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 420px;
    padding: 2rem 2.2rem 2.3rem;
    position: relative;
    transition: box-shadow .25s ease, transform .25s ease;
}

.cta-wrapper:hover {
    box-shadow:
        0 2px 4px rgba(0,0,0,0.10),
        0 8px 18px -4px rgba(0,0,0,0.16),
        0 24px 48px -12px rgba(0,0,0,0.22);
    transform: translateY(-2px);
}

.cta-wrapper .cta-phrase {
    color: #172a3a;
    font-weight: 600;
    letter-spacing: .4px;
}

.cta-wrapper .cta-sub {
    color: #263645;
    margin-bottom: .3rem;
    opacity: .85;
}

.dashboard-column {
    flex: 1;
    padding: 10px;
}

.dashboard-column-left,
.dashboard-column-right {
    align-items: center;
    display: flex;
    justify-content: center;
}

.dashboard-description {
    color: #fff;
    font-size: 16px;
}

.dashboard-logo {
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 70%);
    background-position: center 20%;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    padding-block: 30px;
    padding-bottom: 80px;
    padding-top: 80px;
}

.dashboard-slogan {
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5rem);
    margin: 0 0 .35rem 0;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: .95;
}

.dashboard-slogan.emphasized {
    color: var(--hero-accent);
    font-weight: 700;
}

.hero-column {
    box-sizing: border-box;
    display: flex;
    flex: 1 1 50%;
    padding: clamp(1.5rem, 4vw, 5rem);
}

.hero-left {
    align-items: center;
    background: var(--hero-left-bg);
    color: #FFFFFF;
    justify-content: flex-start;
}

.hero-right {
    align-items: center;
    background: var(--hero-right-bg) url("/img/dashboard/home.jpg") center center / cover no-repeat;
    color: #1b263b;
    justify-content: center;
    position: relative;
}

.lds-roller {
    display: inline-block;
    height: 80px;
    position: relative;
    width: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5,0,0.5,1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    background: #1E1E24;
    border-radius: 50%;
    content: " ";
    display: block;
    height: 7px;
    margin: -4px 0 0 -4px;
    position: absolute;
    width: 7px;
}

.page-title {
    font-weight: bold;
    padding-left: 10px;
    color: var(--secondary-color);
}

.title {
    font-weight: bold;
}

.page-description {
    padding-left: 10px;
}

.page-breadcrumbs {

}

.main-paper-container {
    margin-top: 20px;
    margin-bottom: 10px;
}

.main-paper-form {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-paper-form-crud {
    padding: 20px;
}

.card-list-grid {
    padding-top: 10px;
    margin-bottom: 10px;
}

.card-list-card {
    padding: 10px;
    margin-left: 10px;
    background-color: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .card-list-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

.main-add-button {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    border-radius: 12px;
    padding: 10px 20px;
    color: #212121 !important;
    font-weight: bold;
}

.main-search-button {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    border-radius: 12px;
    padding: 10px 20px;
    color: #212121 !important;
    font-weight: bold;
}

.main-clear-button {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    border-radius: 12px;
    padding: 10px 20px;
    color: #212121 !important;
    font-weight: bold;
}

.form-button {
    width: 200px;
    border-radius: 12px;
    padding: 10px 20px;
}

.bolded-text {
    font-weight: bold;
}

.timeline-stages {
    text-align: center;
    color: #212121 !important;
    font-weight: bold;
    background-color: var(--secondary-color);
    border-radius: 12px;
}

.form-invalid-message {
    margin-top: 10px;
}

.flex-centered-div {
    display: flex;
    align-content: center;
    justify-content: center;
}

.full-width-divider {
    flex-basis: 100%;
    width: 100%;
    margin: 10px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after { left: 63px; top: 63px; }
.lds-roller div:nth-child(2) { animation-delay: -0.072s; }
.lds-roller div:nth-child(2):after { left: 56px; top: 68px; }
.lds-roller div:nth-child(3) { animation-delay: -0.108s; }
.lds-roller div:nth-child(3):after { left: 48px; top: 71px; }
.lds-roller div:nth-child(4) { animation-delay: -0.144s; }
.lds-roller div:nth-child(4):after { left: 40px; top: 72px; }
.lds-roller div:nth-child(5) { animation-delay: -0.18s; }
.lds-roller div:nth-child(5):after { left: 32px; top: 71px; }
.lds-roller div:nth-child(6) { animation-delay: -0.216s; }
.lds-roller div:nth-child(6):after { left: 24px; top: 68px; }
.lds-roller div:nth-child(7) { animation-delay: -0.252s; }
.lds-roller div:nth-child(7):after { left: 17px; top: 63px; }
.lds-roller div:nth-child(8) { animation-delay: -0.288s; }
.lds-roller div:nth-child(8):after { left: 12px; top: 56px; }

.logo {
    background-color: black;
    border-radius: 5px 5px 0 0;
    padding: 10px;
}

.slogans {
    line-height: 1;
    max-width: 520px;
}

.white-color {
    color: var(--white-color);
}

.dashboard-hero {
    background: var(--hero-right-bg);
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 64px);
    width: 100%;
}

.main-paper {
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

@keyframes lds-roller {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
    .dashboard-slogan {
        font-size: clamp(2.2rem, 7vw, 3.8rem);
    }
}

@media (max-width: 900px) {
    .dashboard-hero {
        flex-direction: column;
        min-height: unset;
    }
    .hero-left,
    .hero-right {
        width: 100%;
    }
    .slogans {
        margin: 0 auto 1.2rem;
        text-align: center;
    }
    .cta-wrapper {
        background: #FFFFFF;
        box-shadow:
            0 1px 2px rgba(0,0,0,0.08),
            0 3px 8px -2px rgba(0,0,0,0.14),
            0 14px 28px -8px rgba(0,0,0,0.18);
        transform: none;
    }
    .cta-wrapper:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    .app-bar-logo {
        margin-top: 10px;
        width: 100px;
    }
    .app-bar-logo-text,
    .app-bar-text {
        display: none;
    }
}