@tailwind base;
@tailwind components;
@tailwind utilities;

.built-font {
    font-family: "built-titling";
}

* {
    list-style: none;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.nav-logo{
    width: 192px;
}

.nav-link{
    padding: 8px 20px;
    background-color: #705CF7;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
}

.nav-link:hover{
    opacity: 0.9;
}

.main-container {
    min-height: calc(100vh - 97px);
}

.filter-grey {
    filter: brightness(0) saturate(100%) invert(47%) sepia(0%) saturate(217%) hue-rotate(32deg) brightness(98%) contrast(92%);
}

.bg-dotted-pattern{
    background-image: url('../assets/images/white.jpg');
}

.hr-vertical{
    width: 1px;
    height: 12px;
}

.hero-image{
    width: auto;
    height: 500px;
}

/* ========================================== TAILWIND STYLES */

/* ========================================== CLERK STYLES */
.cl-logoImage {
    height: 38px;
}

.cl-userButtonBox {
    flex-direction: row-reverse;
}

.cl-userButtonOuterIdentifier {
    font-size: 16px;
}

.cl-userButtonPopoverCard {
    right: 4px !important;
}

.cl-formButtonPrimary:hover,
.cl-formButtonPrimary:focus,
.cl-formButtonPrimary:active {
    background-color: #705CF7
}

/* ========================================== REACT-DATEPICKER STYLES */
.datePicker {
    width: 100%;
}

.react-datepicker__input-container input {
    background-color: transparent;
    width: 100%;
    outline: none;
    margin-left: 16px;
}

.react-datepicker__day--selected {
    background-color: #624cf5 !important;
    color: #ffffff !important;
    border-radius: 4px;
}

.react-datepicker__time-list-item--selected {
    background-color: #624cf5 !important;
}