/* Free Agency — brand styles. Ported from app/styles/styles.css. */

:root {
    --sunburst: rgb(228, 95, 46);
    --sunburst-dim: rgba(224, 74, 19, 0.474);
}

html, body {
    height: 100vh;
    margin: 0;
}

section {
    padding: 180px 0;
}

.btn-sunburst {
    background-color: var(--sunburst) !important;
    color: white !important;
}

.bg-sunburst {
    background-color: var(--sunburst) !important;
    color: white !important;
}

.color-sunburst {
    color: var(--sunburst) !important;
}

.btn-light {
    background-color: white !important;
    color: var(--sunburst) !important;
}

.btn-light-outline {
    background-color: transparent !important;
    color: white !important;
    border: 1px solid white !important;
}

.border-sunburst {
    border: 1px solid var(--sunburst);
    border-radius: 7px;
}

.border-bottom-sunburst {
    border-bottom: 2px solid var(--sunburst);
}

.py-75 {
    padding: 75px 0;
}

.dashboard-container {
    margin: 0;
}

.hover-bg:hover {
    background-color: var(--sunburst-dim);
}

.content-wrapper {
    min-height: calc(100vh - 175px);
    display: flex;
    height: calc(100vh - 124px);
    overflow-y: scroll;
    width: 100%;
}

.content {
    flex: 1;
}

#notification-container {
    position: fixed;
    top: 10px;
    left: -300px;
    z-index: 1000;
    transition: left 0.5s ease-in-out;
}

.notification {
    background-color: var(--sunburst);
    color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    width: 250px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.notification.error {
    background-color: #830e05;
}

header {
    padding: 0 20px;
}

#hamburgerToggle,
#hamburgerToggle:focus,
#hamburgerToggle:active,
#hamburgerToggle:focus-visible {
    border: none;
    background-color: transparent;
    outline: none !important;
    box-shadow: none !important;
}
