:root[data-theme="light"] {
    --text: #090d14;
    --secondary_text: #2d3036;
    --background: #f5f7f8;
    --secondary_background: #eaeef6;
    --primary: #417bd6;
    --secondary: #8ab1f0;
    --accent: #3f86f6;
    --card: #f5f7f8;
    --selected: #85a9f1;
    --border: #262a30;
    --svg: #555d67;
    --blob-gradient: radial-gradient(
        circle,
        rgba(65, 123, 214, 0.4) 0%,
        rgba(63, 134, 246, 0.1) 70%
    );
    --particle: rgba(65, 123, 214, 0.8);
    --contact-card: rgb(0 0 0 / 5%);
    color-scheme: light;
}

:root[data-theme="dark"] {
    --text: #ffffff;
    --secondary_text: #777f89;
    --background: #121417;
    --secondary_background: #1b1f23;
    --primary: #2861bd;
    --secondary: #0f3675;
    --accent: #2568d4;
    --card: #262a30;
    --selected: #4b5d88;
    --border: #262a30;
    --svg: #555d67;
    --blob-gradient: radial-gradient(
        circle,
        rgba(65, 123, 214, 0.2) 0%,
        rgba(63, 134, 246, 0.1) 70%
    );
    --particle: rgba(65, 123, 214, 0.3);
    --contact-card: rgba(30, 35, 41, 0.5);
    color-scheme: dark;
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


::-webkit-scrollbar-track {
    background: transparent;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 50px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

html {
    height: 100%;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 450;
    background-color: var(--background);
    color: var(--text);
    cursor: default;
    overflow-x: hidden;
}

::selection {
    background: var(--selected);
}

a,
a:active,
a:visited,
span {
    color: var(--text);
    cursor: pointer !important;
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
label,
td,
th {
    color: var(--text);
}

ul,
li {
    list-style: none;
}

#app {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

#app-layout {
    display: flex;
    background: var(--background);
    flex: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-top: 56px;
}

.app-start {
    height: calc(100vh - 56px);
    width: 100%;

    border-radius: 1rem;
}

.centered-div {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.header {
    height: 56px;
    flex: 0 0 56px;
    border-bottom: 0;
    width: 100%;
    z-index: 13;
    position: fixed;
    background: var(--secondary_background);
    box-shadow: 0 2px 4px -1px rgba(7, 14, 35, 0.08);
    display: flex;
    align-items: center;
}

.header-part-1 {
    width: 100%;
    display: flex;
    align-items: center;
}

.header-part-2 {
    display: flex;
    align-items: center;
}

.header-logo-container {
    display: flex;
    width: 70px;
    max-width: 70px;
    min-width: 70px;
    justify-content: center;
}
.header-logo {
    width: 30px;
    height: 36px;
    padding: 10px;
}

.searchbar-div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 1rem 0 1rem;
}
.searchbar-div:before {
    content: "";
    height: 20px;
    width: 1px;
    background: var(--border);
    right: 1rem;
    position: relative;
}
.search-svg {
    color: var(--secondary_text);
}

.searchbar {
    background-color: transparent;
    height: 100%;
    border: none !important;
    outline: none !important;
    padding-left: 0.5rem;
    font-size: 14px;
    line-height: 17px;
    color: var(--text);
    width: 100%;
}

.search-results {
    position: absolute;
    top: 50%;
    left: 30%;
    right: 30%;
    background: var(--card);
    box-shadow: 0 2px 4px -1px rgba(7, 14, 35, 0.08),
        0px 2px 24px -2px rgba(7, 14, 35, 0.12);
    border-radius: 0.5rem;
    visibility: visible;
    z-index: 999;
}

.login-btn {
    display: flex;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--svg) !important;
    box-shadow: 0 1px 2px rgba(18, 20, 23, 0.06);
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    margin: 0.5rem;
}

#nav-bar {
    position: fixed;
    z-index: 12;
    width: 70px;
    max-width: 70px;
    min-width: 70px;
    margin-left: 0;
    padding-top: 0;
    margin-bottom: 0;
    transition: width 0.15s ease;
    user-select: none;
    border-right: 1px solid var(--border);
    height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--background);
}
.nav-list {
    overflow: auto;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.last-nav-list {

    flex-direction: column-reverse !important;
}

.nav-item {
    padding-bottom: 0.5rem;
}

.nav-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    margin: 0 1rem 0 1rem;
    min-width: 25px;
    min-height: 25px;
    border-radius: 0.5rem;
    justify-content: center;
}

.nav-link > i {
    color: var(--svg);
    stroke: var(--svg);
    fill: var(--svg);
}

.nav-link:hover,
.nav-link:hover > i,
.nav-link:hover > p {
    color: var(--text) !important;
    stroke: var(--text) !important;
    fill: var(--text) !important;
    border-radius: 0.5rem;
    background-color: var(--secondary_background);
}

.nav-item .active,
.nav-item .active > i {
    color: var(--primary) !important;
    stroke: var(--primary) !important;
    fill: var(--primary) !important;
    border-radius: 0.5rem;
    background-color: var(--secondary_background);
}

.bottem-spacer {
    padding-bottom: 1.5rem;
}

.top-spacer {
    padding-top: 1.5rem;
}

.bottem-spacer::after {
    content: "";
    height: 1px;
    width: 50%;
    background: var(--border);
    display: flex;
    margin-left: 25%;
    position: relative;
    top: 0.75rem;
}

.top-spacer::before {
    content: "";
    height: 1px;
    width: 50%;
    background: var(--border);
    display: flex;
    margin-left: 25%;
    position: relative;
    top: -0.75rem;
}

.expanded-nav {
    width: 250px !important;
    max-width: 250px !important;
    align-items: flex-start !important;
}

.nav-text {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.active-nav-text {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.userdropdown {
    position: fixed;
    opacity: 0;
    left: 70px;
    bottom: 0px;
    border-radius: 0 0.5rem 0 0;
    border: 1px var(--border) solid;
    padding: 0;
    padding-top: 0.5rem;
    min-width: 150px;
    background: var(--background);
    transition: oppacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.userdropdown-option {
    justify-content: space-between;
}

.userdropdown p {
    margin: 0;
    color: var(--svg);
}

.userdropdown,
.userdropdown * {
    transition: opacity 0.2s ease, visibility 0.2s ease, filter 0.2s ease;
}

.starting-image {
    width: 50%;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    margin-left: 70px;

    max-width: -webkit-fill-available;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;

    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}


.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background-color: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin-inline: 1rem;
}

.contact-btn:hover {
    box-shadow: 0 0 0 3px rgba(65, 123, 214, 0.15);
}

.contact-btn:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(65, 123, 214, 0.2),
        transparent
    );
    animation: pulse-slide 1.5s infinite;
}

.contact-btn:active {
    transform: scale(0.97);
    box-shadow: 0 0 0 2px rgba(65, 123, 214, 0.25);
}

@keyframes pulse-slide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes input-focus-pulse {
    0% { box-shadow: 0 0 0 0 rgba(65, 123, 214, 0.4); }
    70% { box-shadow: 0 0 0 5px rgba(65, 123, 214, 0); }
    100% { box-shadow: 0 0 0 0 rgba(65, 123, 214, 0); }
}

.contact-btn:focus {
    outline: none;
    animation: input-focus-pulse 1.5s infinite;
}

.notifications-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification {
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    pointer-events: auto;
    max-width: 100%;
    background-color: var(--card);
    color: var(--text);
    position: relative;
    overflow: hidden;
    transition: none !important;
}

.notification.success {
    box-shadow: 0 0 0 1px var(--success, #10b981);
    animation: success-pulse 1.5s infinite;
}

.notification.warning {
    box-shadow: 0 0 0 1px var(--warning, #f59e0b);
    animation: warning-pulse 1.5s infinite;
}

.notification.error {
    box-shadow: 0 0 0 1px var(--error, #ef4444);
    animation: error-pulse 1.5s infinite;
}

.notification.info {
    box-shadow: 0 0 0 1px var(--primary, #417bd6);
    animation: info-pulse 1.5s infinite;
}

@keyframes success-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes warning-pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 5px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes error-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes info-pulse {
    0% { box-shadow: 0 0 0 0 rgba(65, 123, 214, 0.4); }
    70% { box-shadow: 0 0 0 5px rgba(65, 123, 214, 0); }
    100% { box-shadow: 0 0 0 0 rgba(65, 123, 214, 0); }
}

.notification-icon {
    flex-shrink: 0;
    margin-right: 12px;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
}

.notification-content {
    flex-grow: 1;
    margin-right: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.notification-close:hover {
    opacity: 1;
}

.notification-close svg {
    width: 16px;
    height: 16px;
}


.notification.success .notification-icon svg {
    color: var(--success, #10b981);
}


.notification.warning .notification-icon svg {
    color: var(--warning, #f59e0b);
}


.notification.error .notification-icon svg {
    color: var(--error, #ef4444);
}


.notification.info .notification-icon svg {
    color: var(--primary, #417bd6);
}