/************** Standard html element styling ***************/


html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    flex-direction: column;
    margin: 0;
    /*padding-top: 52px;*/
    box-sizing: border-box;
    background-color: white;
    color: rgb(32, 33, 36);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

main {
    flex-grow: 1;
}

h1 {
    margin: 0;
    text-align: center;
}

h2, h3 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #0366d6;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
}


/************** Base template styling (elements that are only present on the website base template html file **************/


.main-website-header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 2px 0;
    display: flex;
    justify-content: center;
    height: 45px;
    /*border-bottom: 1px solid rgb(230, 230, 230);*/
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.nav-left {
    display: flex;
    gap: 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #657786;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.2s;
    border-radius: 4px;
    text-align: center;
}

.nav-item:hover {
    color: #0366d6;
    background-color: rgba(21, 48, 125, 0.05);
}

.nav-item i {
    font-size: 1rem;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-item.active {
    color: #0366d6;
    font-weight: 600;
}

.left .logo-container {
    display: flex;
    align-items: center;
}

.nav-left .logo-container {
    display: flex;
    align-items: center;
}

.nav-left .logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-left h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #0366d6;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
}

.nav-left h1 svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    fill: currentColor;
    transition: all 0.2s ease;
}

.nav-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-center {
    display: flex;
    flex-direction: row;
}

.main-website-header-login-btn {
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: rgb(32, 33, 36);
}

.main-website-header-register-btn {
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 10px;
    margin-right: 5px;
}

.messenger-link {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(95, 99, 104);
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
}

.messenger-link:hover {
    color: #0366d6;
    background-color: #dbeafe;
}

.messenger-link i {
    font-size: 1.1rem;
}

.apps-dropdown-container {
    position: relative;
    color: rgb(95, 99, 104);
}

.apps-dropdown-trigger {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: rgb(95, 99, 104);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: transparent;
}

.apps-dropdown-trigger:hover {
    color: #0366d6 !important;
    background-color: #dbeafe;
}

.apps-dropdown-trigger i {
    font-size: 1rem;
}

.apps-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: -47px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 380px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.apps-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.apps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.apps-header h3 {
    font-weight: 500;
    color: rgb(32, 33, 36);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.apps-list {
    padding: 0 0 10px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.apps-header {
    padding: 15px 20px 10px;
    border-radius: 8px 8px 0 0;
}

.apps-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgb(32, 33, 36);
}

.apps-list a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgb(32, 33, 36);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
}

.apps-list a:hover {
    color: #0366d6;
}

.apps-list a i {
    font-size: 1rem;
    color: rgb(95, 99, 104);
    width: 20px;
    text-align: center;
}

.apps-list a:hover i {
    color: #0366d6;
}

.apps-dropdown-trigger .apps-grid-icon {
    width: 1.3rem;
    height: 1.3rem;
    color: rgb(95, 99, 104);
    transition: fill 0.2s ease;
}

.notifications-dropdown-container {
    position: relative;
}

.notifications-dropdown-trigger {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: rgb(95, 99, 104);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: transparent;
}

.notifications-dropdown-trigger:hover {
    color: #0366d6;
    background-color: #dbeafe;
}

.notifications-dropdown-trigger i {
    font-size: 1.3rem;
}

.notification-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -3px;
    right: -2px;
    background-color: #ff4b4b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
}

.notifications-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: -128px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 380px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.notifications-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.notifications-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgb(32, 33, 36);
}

.notifications-list {
    max-height: 360px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.notification-item {
    display: flex;
    align-items: start;
    padding: 10px;
    transition: background-color 0.2s;
    text-decoration: none;
    color: #374151;
    flex-shrink: 0;
}

.notification-item:hover {
    text-decoration: none;
}

.notification-item i {
    color: #6b7280;
    margin-top: 5px;
    margin-right: 12px;
}

.notification-content {
    flex: 1;
    margin-top: -3px;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notifications-footer {
    padding: 10px 15px;
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

.notifications-footer a {
    color: #0366d6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.notifications-footer a:hover {
    text-decoration: underline;
}

.no-notifications-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #657786;
    margin: 12px 0;
    flex-grow: 1;
    justify-content: center;
}

.no-notifications-message i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.no-notifications-message p {
    margin: 0;
    font-size: 0.9rem;
}

.profile-dropdown-container {
    position: relative;
}

.profile-dropdown-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.main-website-header-profile-picture {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(35, 130, 222, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f8fafc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.profile-dropdown-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #6b7280;
    border: 1px solid rgb(230, 230, 230);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: -1px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 380px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.profile-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.profile-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgb(32, 33, 36);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
}

.profile-dropdown-menu a:hover {
    color: #0366d6;
    text-decoration: none;
}

.profile-dropdown-menu i {
    font-size: 1rem;
    color: rgb(95, 99, 104);
    width: 20px;
    text-align: center;
}

.profile-dropdown-menu a:hover i {
    color: #0366d6;
}

@media screen and (max-width: 992px) {
    .search-input {
        width: 120px;
    }

    .nav-left {
        gap: 10px;
    }

    .nav-item span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .search-container {
        display: none;
    }

    .nav-item {
        padding: 8px 10px;
    }

    .nav-item span {
        font-size: 0.8rem;
    }

    .nav-left {
        gap: 10px;
    }
}

.dropdown-profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0;
    flex-shrink: 0;
}

.profile-dropdown-menu-view-profile-button {
    border-bottom: 1px solid rgb(230, 230, 230);
    margin-bottom: 5px;
    color: #0366d6 !important;
    display: flex !important;
    align-items: center;
    padding: 12px 16px !important;
}

.profile-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(32, 33, 36);
}

.profile-email {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    color: #6b7280;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.main-nav-bar-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    text-decoration: none;
    color: rgb(32, 33, 36);
    border-radius: 3px;
    font-size: 0.95rem;
    margin-bottom: 5px;
    margin-left: 6px;
    margin-right: 6px;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease;
}

.main-nav-bar-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    border-radius: 9999px 9999px 0 0;
    transition: all 0.2s ease;
}

.main-nav-bar-item:hover {
    color: #0366d6;
}

.main-nav-bar-item.active {
    color: #0366d6;
    font-weight: 600;
}

.main-nav-bar-item.active::after {
    background-color: #0366d6;
}


/************** Global website styling (styles that get applied to html elements that most html templates on the website have) **************/


.main-container {
    display: flex;
    gap: 25px;
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    box-sizing: border-box;
    /*padding-left: 240px;*/
    max-width: 1400px;
    margin: 0 auto;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 36px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.no-results h3 {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.no-results-description {
    color: #6b7280;
    margin: 0 0 28px 0;
    font-size: 14px;
    font-weight: 500;
}

.posting-form-title {
    text-align: center;
    justify-content: center;
    align-items: center;
}

.main-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-page-header-title {
    font-size: 20px;
    font-weight: 600;
    color: #24292e;
}

.main-page-bread-crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
    font-size: 14px;
    color: #6b7280;
}

.main-page-bread-crumbs a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.main-page-bread-crumbs a:hover {
    text-decoration: underline;
}

.main-page-bread-crumbs .separator {
    margin: 0 8px;
    color: #6b7280;
    font-weight: 500;
}

.main-page-bread-crumbs .current-page {
    font-weight: 500;
    color: rgb(32, 33, 36);
}

input::placeholder,
textarea::placeholder {
    color: #657786;
    margin-left: 10px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #657786;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #657786;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #657786;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #657786;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
textarea:focus,
select.styled-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: #0366d6;
    /*box-shadow: 0 0 0 2px rgba(35, 131, 226, 0.15);*/
    outline: none;
}

input[type="datetime-local"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="time"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 5px 12px;
    font-size: 0.95rem;
    line-height: 20px;
    color: rgb(32, 33, 36);
    vertical-align: middle;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: right 8px center;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 8px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(225, 228, 232, 0.2);
    transition: 80ms cubic-bezier(0.33, 1, 0.68, 1);
    transition-property: color, background-color, box-shadow, border-color;
    box-sizing: border-box;
    height: 35px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="search"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    border-color: #0366d6;
    /*box-shadow: 0 0 0 2px rgba(35, 131, 226, 0.15);*/
    outline: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="url"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="search"]:hover,
input[type="time"]:hover,
select:hover,
textarea:hover {
    border-color: #0366d6;
}

input[type="text"].tags-input {
    padding-left: 40px;
}

input.error,
select.error,
textarea.error {
    border-color: #cb2431;
}

input.error:focus,
select.error:focus,
textarea.error:focus {
    border-color: #cb2431;
    box-shadow: 0 0 0 3px rgba(203, 36, 49, 0.3);
}

input.success,
select.success,
textarea.success {
    border-color: #2ea44f;
}

input.success:focus,
select.success:focus,
textarea.success:focus {
    border-color: #2ea44f;
    box-shadow: 0 0 0 3px rgba(46, 164, 79, 0.3);
}

input:disabled,
select:disabled,
textarea:disabled {
    color: #959da5;
    background-color: #f6f8fa;
    border-color: rgb(230, 230, 230);
    box-shadow: none;
    cursor: not-allowed;
}

textarea {
    min-height: 100px;
    max-height: 500px;
    resize: vertical;
}

select {
    padding-right: 24px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23586069'%3E%3Cpath fill-rule='evenodd' d='M4.22 6.22a.75.75 0 0 1 1.06 0L8 8.94l2.72-2.72a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0L4.22 7.28a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E");
    background-size: 16px;
    appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 0;
    margin-right: 8px;
    vertical-align: middle;
}

.form-checkbox,
.form-radio {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.form-checkbox input[type="checkbox"],
.form-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox-label,
.form-radio-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding-left: 25px;
    user-select: none;
    font-size: 14px;
    color: rgb(32, 33, 36);
}

.form-checkbox-label::before,
.form-radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 1px solid rgb(230, 230, 230);
    transition: all 0.2s;
}

.form-checkbox-label::before {
    border-radius: 3px;
    background-color: #fff;
}

.form-radio-label::before {
    border-radius: 50%;
    background-color: #fff;
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox-label::before {
    background-color: #0366d6;
    border-color: #0366d6;
}

.form-radio input[type="radio"]:checked + .form-radio-label::before {
    border-color: #0366d6;
    border-width: 5px;
}

.form-checkbox-label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: all 0.2s;
}

.form-checkbox input[type="checkbox"]:checked + .form-checkbox-label::after {
    opacity: 1;
}

.form-checkbox input[type="checkbox"]:focus + .form-checkbox-label::before,
.form-radio input[type="radio"]:focus + .form-radio-label::before {
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3);
}

.input-group {
    position: relative;
    display: flex;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #586069;
    text-align: center;
    background-color: #f6f8fa;
    border: 1px solid rgb(230, 230, 230);
}

.input-group-prepend .input-group-text {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append .input-group-text {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-validation-error {
    display: none;
    margin-top: 4px;
    font-size: 12px;
    color: #cb2431;
}

.error + .form-validation-error {
    display: block;
}

.form-text {
    margin-top: 4px;
    font-size: 12px;
    color: #586069;
}

.required-field::after {
    content: " *";
    color: #cb2431;
}

::placeholder {
    color: #657786;
    opacity: 1;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-left: 32px;
}

.input-with-icon .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #586069;
    pointer-events: none;
}

.form-group {
    margin-bottom: 16px;
}

input[type="range"] {
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
    background: transparent;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgb(230, 230, 230);
    border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #0366d6;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6px;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #d1d5da;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgb(230, 230, 230);
    border-radius: 2px;
}

input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #0366d6;
    cursor: pointer;
    border: none;
}

.form-file {
    position: relative;
    display: inline-block;
}

.form-file-input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.form-file-label {
    display: inline-block;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgb(32, 33, 36);
    background-color: #fafbfc;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}

.form-file-input:hover + .form-file-label {
    background-color: #f3f4f6;
    border-color: #d1d5da;
}

.form-file-input:focus + .form-file-label {
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3);
}

.currency-input-wrapper {
    position: relative;
}

.currency-input-wrapper .currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(32, 33, 36);
    pointer-events: none;
}

.currency-input-wrapper input {
    padding-left: 24px;
}


/************** Website standard pagination styling  **************/


.pagination-controls {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

.pagination {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
}

.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 999px;
    background-color: white;
    color: #374151;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    margin: 0.5rem;
}

.pagination-item:hover:not(.disabled):not(.active) {
    background-color: #f3f4f6;
    color: rgb(32, 33, 36);
    border-color: #9ca3af;
}

.pagination-item.active {
    color: #0366d6;
    font-weight: 500;
    border-radius: 999px;
    background-color: #dbeafe;
}

.pagination-item.disabled {
    color: #9ca3af;
    pointer-events: none;
}

.pagination-info {
    font-size: 0.875rem;
    color: #6b7280;
    white-space: nowrap;
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .pagination-info {
        position: static;
        margin-top: 5px;
    }
}


/************** Website standard grid/list styling **************/


.grid-cards {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.grid-cards.active {
    display: grid;
}

.list-cards {

}

.list-cards.active {
    display: flex;
}

/************** Website standard tab styling **************/


.tabs {
    border-bottom: 1px solid rgb(230, 230, 230);
    padding-bottom: 0;
    margin-bottom: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    display: flex;
    gap: 8px;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: none;
    background: transparent;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    border-radius: 9999px 9999px 0 0;
    transition: all 0.2s ease;
}

.tab:hover {
    color: #0366d6;
}

.tab.active {
    color: #0366d6;
    font-weight: 600;
}

.tab.active::after {
    background-color: #0366d6;
}


/************** Website standard button styles **************/


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid rgb(230, 230, 230);
    background-color: white;
    color: rgb(32, 33, 36);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn i {
    padding-right: 8px;
}

.btn-primary,
.btn-secondary,
.submit-button,
.cancel-button {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid;
    border-radius: 6px;
    appearance: none;
    transition: background-color 0.2s;
    max-height: 32px;
}

.btn-primary,
.submit-button {
    color: #ffffff;
    background-color: #0366d6;
    border-color: rgba(27, 31, 35, 0.15);
}

.btn-secondary,
.cancel-button {
    color: #4a5568;
    background-color: #fafbfc;
    border-color: rgba(27, 31, 35, 0.15);
}

.btn-primary:hover,
.submit-button:hover {
    background-color: #0255b3;
}

.btn-secondary:hover,
.cancel-button:hover {
    background-color: #f3f4f6;
    border-color: rgba(27, 31, 35, 0.15);
}

.btn-danger {
    padding: 10px 16px;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-danger:hover {
    background-color: #dc2626;
}


/************** Website standard list/grid view toggle styles **************/


.view-toggle-container {
    display: flex;
    border-radius: 6px;
    border: 1px solid rgb(230, 230, 230);
    overflow: hidden;
    height: 25px;
    width: 90px;
}

.view-toggle {
    flex: 1;
    background: none;
    border: none;
    padding: 8px 12px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.view-toggle:first-child {
    border-right: 1px solid rgb(230, 230, 230);
}

.view-toggle:hover:not(.active) {
    background-color: rgba(203, 213, 225, 0.4);
}

.view-toggle.active {
    color: #0366d6;
    font-weight: 500;
    background-color: #dbeafe;
}

.view-toggle i {
    font-size: 16px;
}


/************** Website standard Sidebars styles **************/


.sidebar-search {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    position: relative;
}

.sidebar-search-input {
    width: 100% !important;
    padding: 8px 16px 8px 42px !important;
    border-radius: 6px !important;
    border: 1px solid rgb(230, 230, 230) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: #f8f9fa !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    margin-bottom: 6px !important;
}

.sidebar-search-input:hover {
    border-color: #0366d6 !important;
    background-color: #f9fafb !important;
}

.sidebar-search-icon {
    position: absolute !important;
    left: 16px !important;
    top: 10px !important;
    font-size: 16px;
    color: #6b7280 !important;
}

.search-shortcut {
    position: absolute !important;
    left: 180px !important;
    top: 10px !important;
    color: #6b7280 !important;
    font-size: 12px;
    font-weight: 500;
}

.create-new-popup i {
    color: rgb(75, 85, 99);
}

.dashboard-sidebar {
    width: 210px;
    left: 0;
    position: fixed;
    padding: 0 14px;
    height: 100vh;
    overflow-y: auto;
    z-index: 10;
    border-radius: 0;
    border-right: 1px solid rgb(230, 230, 230);
    display: flex;
    flex-direction: column;
}

.combined-profile-dashboard {
    padding: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: none !important;
    background-color: transparent;
    box-shadow: none;
    flex: 1;
}

.logout-section {
    margin-top: auto;
    margin-bottom: 80px;
    position: relative;
}

.dashboard-navigation {
    display: flex;
    flex-direction: column;
    padding-left: 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(32, 33, 36);
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.1s ease;
    margin-bottom: 6px;
    margin-left: 10px;
    font-weight: 500;
    padding: 4px 0 4px 8px;
}

.sidebar-item i {
    font-size: 1rem;
    margin-right: 10px;
    color: rgb(95, 99, 104);
    width: 20px;
    text-align: center;
}

.sidebar-item:hover {
    color: #0366d6;
}

.sidebar-item:hover i {
    opacity: 1;
    color: #0366d6;
}

.sidebar-item.active {
    color: #0366d6;
    font-weight: 500;
    background-color: #dbeafe;
}

.sidebar-item.active i {
    color: #0366d6;
    opacity: 1;
}

.nav-separator {
    margin: 10px -14px;
    height: 1px;
    background-color: rgb(230, 230, 230);
}

.profile-navigation {
    margin-bottom: 5px;
}

.scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.scrollable-content::-webkit-scrollbar {
    width: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: rgba(55, 53, 47, 0.2);
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-track {
    background-color: transparent;
}

.sidebar-profile-content {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 3px;
}

.sidebar-profile-image {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(35, 130, 222, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f8fafc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.sidebar-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-initials {
    font-size: 14px;
    font-weight: 500;
    color: #0366d6;
}

.sidebar-profile-info {
    margin-left: 10px;
    flex-grow: 1;
    overflow: hidden;
}

.sidebar-profile-name {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(32, 33, 36);
}

.sidebar-profile-menu {
    display: flex;
    gap: 6px;
    margin-left: 4px;
}

.profile-menu-link {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.profile-menu-link:hover {
    background-color: rgba(55, 53, 47, 0.08);
    color: #0366d6;
}

.profile-menu-link i {
    font-size: 12px;
}

.settings-navigation {
    position: relative;
}

.create-new-popup {
    position: absolute;
    bottom: 100%;
    left: -5px;
    right: 0;
    width: 220px;
    margin: 0 auto 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 1000;
    display: none;
    transform-origin: bottom center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    border: 1px solid rgb(229, 231, 235);
}

.create-new-popup.show {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.popup-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.1s ease;
}

.popup-menu-item:hover i {
    color: #0366d6;
}

.popup-menu-item:hover span {
    color: #0366d6;
}

.popup-menu-item i {
    font-size: 16px;
    width: 24px;
    margin-right: 12px;
    color: rgb(75, 85, 99);
}

.popup-menu-item span {
    font-size: 14px;
    color: rgb(32, 33, 36);
}

.create-new-button {
    cursor: pointer;
    position: relative;
}

.create-new-button i {
    color: #0366d6 !important;
}

.sidebar-main-header {
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(32, 33, 36);
    padding-bottom: 10px;
}

.sidebar-section-title {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 15px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-heading {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgb(32, 33, 36);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-category-header,
.filter-category-header-top {
    margin-top: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgb(32, 33, 36);
    font-size: 0.9rem;
}

.filter-category-header:hover,
.filter-category-header-top:hover {
    color: #0366d6;
}

.filter-category-header:hover i,
.filter-category-header-top:hover i {
    color: #0366d6;
}

.filter-category-header-top {
    margin-top: 5px;
}

.filter-checkbox {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.filter-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgb(210, 214, 215);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-checkbox input[type="checkbox"]:checked {
    background-color: #0366d6;
    border-color: #0366d6;
}

.filter-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 139, 0.2);
}

.filter-checkbox input[type="checkbox"]:hover {
    border-color: #9ca3af;
}

.filter-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    margin-top: -1px;
}

.filter-checkbox input[type="checkbox"] {
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.filter-checkbox:hover {
    color: #0366d6;
}

.accordion-panel {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-left: 4px;
}

.filter-checkbox input[type="checkbox"]:disabled {
    background-color: #f3f4f6;
    border-color: rgb(230, 230, 230);
    cursor: not-allowed;
}

.filter-checkbox input[type="checkbox"]:disabled + span {
    color: #9ca3af;
    cursor: not-allowed;
}

.filter-header {
    cursor: pointer;
    user-select: none;
    padding: 5px 0;
}

.filter-header:hover {
    color: #0366d6;
}


.filter-header:hover i {
    color: #0366d6;
}

.filter-header:hover h5 {
    color: #0366d6;
}

.collapsible-header {
    transition: all 0.3s ease;
}

.collapsible-header:hover {
    color: #0366d6;
}

.toggle-icon {
    font-size: 0.8rem;
    margin-right: 10px;
    color: #657786;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.collapsible-content {
    max-height: 0;
    overflow: hidden;
}

.collapsible-content.active {
    max-height: 500px;
}

.filter-category-header,
.filter-category-header-top {
    margin: 0;
    font-weight: 500;
    color: rgb(32, 33, 36);
    font-size: 14px;
}

.accordion-panel {
    padding-top: 0;
    padding-left: 4px;
}

.accordion-panel.active {
    padding-top: 10px;
}

.filter-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(55, 53, 47, 0.16);
    border-radius: 3px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 10px;
}

.filter-checkbox input[type="checkbox"]:checked {
    background-color: #0366d6;
    border-color: #0366d6;
}

.filter-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    margin-top: -1px;
}

.filter-checkbox:hover {
    color: #0366d6;
}

.filter-section {
    margin-bottom: 14px;
}

.filter-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 6px 8px;
    border-radius: 3px;
    transition: background-color 0.1s ease;
}

.filter-header:hover {
    color: #0366d6 !important;
}

.sidebar-credentials {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    color: #6b7280;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/************** Website standard rich editor styles **************/


.rich-editor {
    border: 1px solid rgb(230, 230, 230);
    border-top: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 0.75rem 1rem;
    min-height: 450px;
    background-color: white;
    font-size: 0.875rem;
}

.rich-editor:focus {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.25);
}

.rich-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    padding: 0.625rem;
    border: 1px solid rgb(230, 230, 230);
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    background-color: #f0f9ff;
}

.editor-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    border-radius: 0.25rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.editor-btn:hover {
    background-color: white;
    color: #0366d6;
}

.editor-btn.active {
    color: #0366d6;
}

.editor-divider {
    width: 1px;
    height: 1.5rem;
    background-color: rgb(230, 230, 230);
    margin: 0 0.25rem;
}

.rich-editor p {
    margin: 0 0 0.75rem 0;
}

.rich-editor p:last-child {
    margin-bottom: 0;
}

.rich-editor ul,
.rich-editor ol {
    margin: 0 0 0.75rem 1.5rem;
    padding: 0;
}

.rich-editor a {
    color: #0366d6;
    text-decoration: none;
}

.rich-editor a:hover {
    text-decoration: underline;
}

.careers-section {
    padding: 6rem 2rem;
    text-align: center;
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
}

.careers-text {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.linkedin-btn {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    padding: 0.9rem 1.6rem;

    background: #0A66C2;
    color: white;

    text-decoration: none;

    border-radius: 999px;

    font-weight: 600;

    transition: all 0.25s ease;
}

.linkedin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10,102,194,0.25);
}

.chicago-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-column {
    text-align: left;
}

.about-text {
    line-height: 1.9;
    margin-top: 1rem;
    color: #b8c0d0;
}

.chicago-card {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem;

    border-radius: 20px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.chicago-card p {
    line-height: 1.9;
}

.founders-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founder-card {
    display: flex;
    gap: 2rem;

    padding: 2rem;

    border-radius: 20px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);
}

.founder-image {
    flex-shrink: 0;
}

.founder-image img {
    width: 220px;
    height: 220px;

    object-fit: cover;

    border-radius: 18px;

    border: 2px solid rgba(255,255,255,0.12);
}

.founder-content {
    flex: 1;
}

.founder-content .personnel-name {
    margin-bottom: .5rem;
}

.founder-content .personnel-title {
    margin-bottom: 1rem;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;

    padding: 1rem 1.75rem;

    border-radius: 999px;

    background: #0A66C2;
    color: white;

    text-decoration: none;
    font-weight: 600;

    transition: all .25s ease;
}

.linkedin-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(10,102,194,.25);
}

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-card {
        flex-direction: column;
    }

    .founder-image img {
        width: 180px;
        height: 180px;
    }
}
