<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('fonts/2865Nexa-Light.woff2');
@import url('fonts/4549Nexa-bold.woff2');
@import url('fonts/7330Nexa-book.woff2');
@import url('fonts/7888Nexa-book.woff2');
@import url('fonts/968Nexa-book.woff2');

* {
    box-sizing: border-box;
}


html, body {
    margin: 0;
    padding: 0;
    /*font-family: 'Nexa-Book', sans-serif; */
    font-family: 'SegoeUI';
    font-size: 14px;
    background-color: #005E63;
}

h1, h2, h3, h4, h5, h6 {
    /*font-weight: 600;*/
}

.tagline {
    font-weight: 700; 
    color: var(--accent-color); 
}

.app-container {
    display: flex;
    height: 100vh;
    background-color: #ffffff;
}

.left-folder-container{
    display: flex;
    height: calc(100% - 48px);
    -webkit-justify-content: start;
    justify-content: start;

    position: relative;
}

.sidebar-icon-container {
    width: 100%;
    color: #004750;
    background-color: #FAF9F8;
    height: 48px;
    -webkit-align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: flex-start;
    box-sizing: border-box;
    border-left: 2px solid transparent;
}
    .sidebar-icon-container:hover {
        font-weight: bold;
        background-color: #EDEBE9;
        border-left: 2px solid #004750;
    }
        
.sidebar-icon {
    width: 48px;
    height: 100%;
    color: #004750;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-icon-label {
    width: calc(100% - 48px);
    height: 100%;
    color: #004750;
    display: flex;
    align-items: center;
}


.dynamic-content-part {
    flex-grow: 1;
    height: 100%;
    position: relative;
    top: 48px;
    margin-left: auto;
    background-color: #FAF9F8;
    display:flex;
    min-width: 8px;
}

.content {
    width: 100%;
    height: calc(100%-48px);
    display: flex;
    flex-direction: column;
}

.topbar {
    width: 100%;
    height: 48px;    
    background-color: #005E63;
}

.topbar-logout {
    cursor: pointer;
    color: #fff;
}

.topbar-env {
    background-color: orange;
    width: 500px;
    position: relative;
    display: inline-flex;
    height: 48px;    
    right:-20px;
    font-size: 18px;
    justify-content: right;
    align-items: center;
    margin-left: 30px;
}

.topbar-env-logout {
    width: 100px;    
    cursor: pointer;
    color: #fff;
    text-align: right;
    margin-right:20px;
}

.hamburger {
    cursor: pointer;
    position: absolute;
    left: 16px;
    top: 13px;
    border: none;
    color: #fff;
    transition: width 0.5s ease-in-out; /* Smooth transition for sidebar */
}

.rotate-hamburger {
    transform: rotate(90deg); /* Rotates the hamburger icon */    
    top: 14px;
    left: 18px;
}


.user-section {
    float: right;
    right: 20px;
    position: relative;
    color: white;
    display: flex;
    height:48px;
    -webkit-align-items: center;
    align-items: center;
}

.main-content {
    height: calc(100% - 48px);
    width: 100%;
    overflow: auto;
    background-color: #004750;
}

button, .menu-icon, .app-icon {
    font-weight: 400;     
}

.left-buttons {
    font-size: 10px;
}

.menu-icon {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    cursor: pointer;
    color: #fff;    
    white-space:break-spaces;
}

    .menu-icon:hover {
        color: #000;
    }

.menu-icon-pressed {
    background-color: #357f94; /* Darker shade for the pressed state */
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.2); /* Inset shadow for a "pushed" effect */
    transform: scale(0.97); /* Slightly scale down the button */
    border: 2px solid #285e70; /* Optional: change border color for pressed state */
    
}

.app-sub-container{
    position: absolute;
    left: 0px;
    width: 280px;
}

 .topbar {
    background-color: #005E63;
}

.overlay {
    position: absolute;
    width: 300px;
    height: 250px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    top: 80px;
    left: 80px;
}

.k-input-solid.k-invalid {
    border-color: rgba(0, 0, 0, 0.08);
    color: #424242;
    background-color: #ffffff;
}

.topbar-logo-container{
    display:block;
    position: absolute;
    left: 56px;
    top: 9px;
}


/* Apply to the body or main container to set up the grid */
.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px; /* Adjust as needed for spacing from the top */
}

/* Centering the logo and welcome message */
.welcome-logo, .welcome-welcome {
    text-align: center; /* Center text for these elements */
}

.welcome-welcome {
    font-size: 42px;
    color: #ffffff;
    padding-top: 15px; /* Adjust as needed */
    padding-bottom: 15px; /* Adjust as needed */
}

/* Style for the app icon rows */
.welcome-app-row {
    display: flex;
    justify-content: center; /* Centers children horizontally */
    gap: 20px; /* Adjust the space between icons */
    margin: 10px 0; /* Vertical spacing between rows */
}

.welcome-app-icon {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background-color: #ffffff;
    box-shadow: 0px 1.2px 3.6px rgba(0, 0, 0, 0.1), 0px 6.4px 14.4px rgba(0, 0, 0, 0.13);
    border-radius: 6px;
    height: 96px;
    width: 96px;
    padding: 10px; /* Adjust padding as needed */
}

    .welcome-app-icon svg {        
        width: 50%; 
        height: auto; 
        align-self: center; 
        margin: auto; 
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .welcome-app-icon:hover {
        transform: translate(-2px, -2px);                
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .welcome-app-icon:active {
        transform: translate(1px, 1px); 
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); 
    }

.welcome-app-icon-disabled {
    background-color: #ececec;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1.2px 3.6px rgba(0, 0, 0, 0.1), 0px 6.4px 14.4px rgba(0, 0, 0, 0.13);
    border-radius: 6px;
    height: 96px;
    width: 96px;
    padding: 10px;
}
    
.welcome-app-text {
    font-size: 20px;
    color: #ffffff;
    align-self: center;
    font-weight: lighter;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.welcome-app {
    display: flex;
    height: 137px;
    width: 137px;
    align-self: center; 
    align-items: center;
    flex-direction: column;
}

.welcome-recent-projects, .welcome-buttons {
    text-align: center; 
    margin-top: 20px; 
}

.welcome-button {
    margin: 10px;
}

.welcome-projects-container{
    width: 600px;

}</pre></body></html>