:root {
    --primary: #5F808A;
    --primary-fade: #BCC2E3;
    --cards: #FFFFFF;
    --accents: #FB8C00;
    --secondary: #6ED4BE;
    --error: #E53935;
    --active: #2ECC71;
    --inactive: #BEBEBE;
    --text-primary: #2D2D2D;
    --text-secondary: #666666;
    --text-contrast: #FFFFFF;
    --borders: #ECF0F1;
    --bg: #F5F5F5;
    --rich-navy: #2C3E50;
    --secondary-fade: #D0BAFF;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.navbar-brand img {
    height: 30px;
}

/* Accent button style */
.btn-primary {
    background-color: var(--accents);
    border-color: var(--accents);
    color: var(--text-contrast);
}

.btn-primary:hover {
    background-color: #E27E00;
    border-color: #E27E00;
}

.toast {
    max-width: 300px;
}



.alert-success,
.alert-danger {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}

/* Rejected Sections Alert */
.alert-warning {
    border-left: 4px solid #ffc107;
    background-color: #fff3cd;
}

.alert-warning .alert-link {
    color: #856404;
    text-decoration: underline;
}

.alert-warning .alert-link:hover {
    color: #533f03;
}

.alert-warning .bi-exclamation-triangle-fill {
    color: #ffc107;
    font-size: 1.25rem;
}