/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("buttons.a2782de6e3c6.css");
@import url("badges.09a614befd8a.css");
@import url("table.647ef6149a7b.css");
@import url("inputs.548880fc2654.css");
@import url("forms.56f14f98a8eb.css");
@import url("nav.d2adb1a32bc3.css");
@import url("header.cbc58b8fb164.css");

/* **************** */
/* Base */
/* **************** */

:root {
    --main: #307DF6;
    --light-blue: #EFF5FF;
    --dark-blue: #CADFFF;
    --white: #FFFFFF;
    --white2: #F5F5F5;
    --background-2: #E9E9E9;
    --background-3: #D2D2D3;
    --background-4: #FCFDFF;
    --dark-grey: #A6A5A7;
    --content-2: #4D4C50;
    --black: #201F24;
    --green: #45C04A;
    --green-light: #CEE154;
    --red: #D01E29;
    --red-light: #FFDFDF;
    --orange: #E2A256;
}

* {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.h1 {
    font-size: 24px;
    font-weight: 700;
}

.h2 {
    font-size: 18px;
    font-weight: 600;
}

.h3 {
    font-size: 14px;
    font-weight: 600;
}

.h4 {
    font-size: 12px;
    font-weight: 600;
}

.p {
    font-size: 12px;
    font-weight: 400;
}

.p-small {
    font-size: 10px;
    font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.p,
.p-small {
    margin: 0px;
    line-height: 1;
}

mark {
    background-color: #FFE8C7;
}

.hidden {
    display: none;
}

#container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px 36px;
    background-color: var(--light-blue);
}

.container {
    background-color: transparent;
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-270 {
    transform: rotate(270deg);
}

label {
    text-align: left;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.inset-shadow {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35) inset;
}

/* Red Dot */
.status-dot {
    min-height: 10px;
    min-width: 10px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.active {
    background-color: #F99500;
}

.status-dot.completed {
    background-color: var(--green);
}

.status-dot.draft {
    background-color: var(--main);
}

/* Progess Bar */
.progress-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #333;
    width: 42px;
    margin: 10px 0px;
}

.progress-bar-label {
    width: 100%;
    font-size: 10px;
    text-align: left;
    font-weight: 700;
    margin-bottom: 4px;
}

.progress-bar-fill-container {
    position: relative;
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #f5a623;
    transition: width 0.3s ease;
    border-radius: 99px;
}

/* Registration Styling */
.registration-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: calc(100vh - 88px);
    gap: 64px;
    padding-top: 80px;
    background-color: var(--light-blue);
}

.registration-title {
    font-size: 24px;
    font-weight: 600;
}

.registration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    height: fit-content;
    padding: 32px;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--dark-blue);
}

.registration-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 100%;
    padding: 0;
}

/* **************** */
/* Dropdown */
/* **************** */

.dropdown-menu {
    padding: 0px;
    border: none;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

#emojiDropdownMenu {
    height: 150px !important;
}

nav .dropdown-menu {
    min-width: 14rem;
}

.dropdown-divider {
    margin: 0px 16px;
    border: none;
    border-top: 1px solid var(--background-2);
}

/* dropdown item can also be a button, remove all styling */
.dropdown-item,
.dropdown-item path {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border: none;
    background-color: transparent;
    outline: none;
    min-height: 60px;
    color: var(--content-2);
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    color: var(--black);
    fill: var(--black);
    transition: color 0.3s, background-color 0.3s, fill 0.1s;
}

.dropdown-item:active {
    background-color: var(--light-blue);
    outline: none;
}

.dropdown-item:not(.delete):hover,
.dropdown-item:not(.delete):hover path {
    color: var(--main);
    background-color: var(--light-blue);
    fill: var(--main);
}

.dropdown-item:hover,
.dropdown-item:hover path {
    color: var(--red);
    background-color: var(--red-light);
    fill: var(--red);
}

.dropdown-item:disabled,
.dropdown-item:disabled path {
    color: #201F2450;
    background-color: transparent;
    fill: #201F2450;
}

/* **************** */
/* Responsive Design */
/* **************** */

@media (max-width: 768px) {
    #container {
        padding: 12px 16px;
    }
}

/* Scrollbar */
/* Custom Scrollbar Styles */

/* The scrollbar track */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-2);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 5px;
    border: 2px solid var(--light-blue);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-grey);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--main) var(--background-2);
}

/* Placeholder */
::placeholder {
    color: var(--dark-grey);
}