﻿/* General styles */

body {
    background-color: #F5F5F5;
}

h2 {
    margin-bottom: 2rem;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

    .form-group label {
        display: block;
        margin-bottom: 0.3rem;
        font-weight: unset;
        color: #555;
    }

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 2vh;
}

.form-control-two {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom:1vh;
}


.form-check {
    text-align: left;
    padding-bottom: 10px;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-check-label {
    padding-top: 0.2rem;
    font-size: 0.8rem;
}

.login-button {
    width: 100%;
    padding: 0.5rem;
    background-color: #ff6900;
    border: none;
    border-radius: 4px;
    color: orange;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 4ch;
}

    .login-button:hover {
        background-color: #ff6900;
    }

.version-info {
    padding-top: 30px;
    color: #999;
    font-size: 0.9rem;
}





.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:5vh;
    padding: 0px 20px 0px 5px;
    background-color: #1a1a1a;
    color: white;
}

.dashboard-left-section {
    display: flex;
    align-items: center;
}

.dashboard-icon {
    width: 2rem;
    height: auto;
    margin-right: 0px;
}

.squiggly-cropped {
    width: 70px;
    height: 30px;
    align-self: end;
}

.dashboard-title {
    font-size: 16px;
}

.dashboard-right-section {
    display: flex;
    align-items: center;
}

.user-icon,
.notification-icon {
    width:4vh;
    height: 4vh;
    margin-right:10px;
    margin-top:0;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 50%;
    padding: 0px;
}

.logo {
    height: 60px; 
    width: 150px;

}

.navbar-logo {
    padding-top: 30px;
    padding-left: 38px;
    margin-bottom: -10px;
}


.sidepanel {
    color: white;
    height: 100vh;
    transition: width 0.3s ease;
    background-color: #1a1a1a;
}

.nav-version {
    position: absolute;
    bottom: 10px;
    padding-left: 50px;

}

.user-link {
    padding: 15px 0px 6px 10px;
}

.e-dialog .e-dlg-content {
    background-color: whitesmoke;
    margin:0vw;
    font-size: 10px;
    font-weight: normal;
    line-height: normal;
}

.e-dialog .e-dlg-header {
    color: black;
    text-align:center;
}


label {
    color: dimgray;
    float: left;
}
.add {
    display: flex;
    justify-content: center;
    width: 8vh;
    height: 5vh;
    background-color: #25A802;
    border-radius: 0.3vw;
    float: left;
    margin-right: 1vw;
    cursor: pointer;
}

    .add:hover {
        background-color: #45A049;
    }

.copy {
    display: flex;
    justify-content: center;
    width: 8vh;
    height: 5vh;
    background-color: #25A802;
    border-radius: 0.3vw;
    float: left;
    margin-right: 1vw;
    cursor: pointer;
}

    .copy:hover {
        background-color: #45A049;
    }

.edit {
    display: flex;
    justify-content: center;
    width: 8vh;
    height: 5vh;
    background-color: #0DCAF0;
    border-radius: 0.3vw;
    float: left;
    margin-right: 1vw;
    cursor: pointer;
}

    .edit:hover {
        background-color: #0aafd1;
    }

.delete {
    display: flex;
    justify-content: center;
    width: 8vh;
    height: 5vh;
    background-color: #F31F02;
    border-radius: 0.3vw;
    float: left;
    margin-right: 1vw;
    cursor: pointer;
}

    .delete:hover {
        background-color: #D32F2F;
    }

.export {
    display: flex;
    justify-content: center;
    width: 8vh;
    height: 5vh;
    background-color: #F35B02;
    border-radius: 0.3vw;
    float: left;
    cursor: pointer;
}

    .export:hover {
        background-color: #CC5200;
    }

.options {
    width: 50vh;
    height: 5vh;
    margin-top: 1vh;
    margin-bottom:1vh;
    margin-left:1.2vw;
}
img{
   
}
@media only screen and (max-width: 740px) {
    img{
       
    }
    .squiggly-cropped {
        width: 4.5rem;
        height:1.7rem;
        align-self: end;
    }

    .add {
        display: flex;
        justify-content:center;
        width: 10vw;
        height: 5vh;
        border-radius: 1vw;
    }

    .edit {
        display: flex;
        justify-content: center;
        width: 10vw;
        height: 5vh;
        border-radius: 1vw;
    }
    .delete {
        display: flex;
        justify-content: center;
        width: 10vw;
        height: 5vh;
        border-radius: 1vw;
    }
    .copy {
        display: flex;
        justify-content: center;
        width: 10vw;
        height: 5vh;
        border-radius: 1vw;
    }
    .export {
        display: flex;
        justify-content: center;
        width: 10vw;
        height: 5vh;
        border-radius: 1vw;
    }
    .options {
        width: 100vw;
        height: 1vh;
        margin-bottom: 10vw;
    }
}



.e-grid .e-focused:not(.e-menu-item):not(.e-editedbatchcell) {
    box-shadow: 0 0 0 0 !important;
}