body {
    margin: 0px;
    font-family: Roboto, sans-serif;
}
/*PropListItem*/

.PropList-item {
    display: flex;
    border: 1px dashed #999;
    margin: 5px 0;
    padding: 5px;
}

.PropListItem.IsActive {
    text-decoration: line-through;
    background: #80eec5;
}

.PropListItem-text {
    flex-grow: 1;
    /* Removes outline when using contentEditable */
    outline: none;
    max-width: 360px;
    margin-left: 10px;
    min-height: 20px;
    overflow: hidden;
    word-break: break-word;
}

.PropListItem-item.focused {
    border-color: #2992e9;
    border-style: solid;
}

.PropListItem-item.invalid {
    border-color: #da3b71;
    border-style: solid;
}

/* Navbar */

.NavbarList {
    background-color: #2c75ff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    top: 0;
    width: 100%;
}

.NavbarLink {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.NavbarLink:hover {
    background-color: #035096;
}

.NavbarItem {
    float: left;
    display: inline;
}

.NavbarsLogin {
    float: right;
    display: inline;
}

/* Login */

.DivLogin {
    width: 300px;
    height: 340px;
    color: white;
    background-color: #035096;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 7px;
    text-align: center;
}

.LoginInput{
    background-color: #ffffff;
}

.FormLogin {
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);

}

.HeadLogin {
    font-family: Verdana, sans-serif;
}

.ButtonLogin {
    background-color: #2c75ff;
    color: white;
    padding: 14px 25px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-block;
    margin: 2px, 2px, 2px, 2px;
}
/* Create Profile */
.DivProfileCreate {
    overflow: auto;
    margin: auto;
    width: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(89.15vh);
    background-color: rgb(223, 239, 255);
}

.LabelProfileCreate {
    color: white;
}

.InputProfileCreate {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.SubmitProfileCreate {
    background-color: #3B96F7;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 7px;
}

.SubmitProfileCreate {
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.SubmitProfileCreate:hover {
    background-color: #3DB8FE;
    color: white;
}


.homeContent{
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    flex-direction: column;
}

.break{
    width: 100%;
}

.homeCarousel{
    width: 100%;
}

.homeTabs {
    border: solid #ccc;
    width: 70%;
    box-shadow: 0px 5px 5px #a0a0a0;
    background-color: rgb(223, 239, 255);
}
/* Profile */
.DivProfile {
    overflow: auto;
    margin: auto;
    width: 80%;
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: left;
    height: calc(89.15vh);
    background-color: rgb(223, 239, 255);
}

.FormProfileCreate {
    margin-top: 60px;
}
/* Tabs */
.tab-list {
    border-bottom: 1px solid #ccc;
    padding-left: 0;
}

.tab-list-item {
    display: inline-block;
    list-style: none;
    margin-bottom: -1px;
    padding: 0.5rem 0.75rem;
    border: solid #ccc;
}

.tab-list-active {
    background-color: #2c75ff;
    border: solid #ccc;
    border-width: 1px 1px 0 1px;
}

/* Slider */
.parent {
    width: 100%;
    overflow: hidden;
    margin: auto;
    padding: 1rem;
}

.slider-container {
    /* if you want to have a scrollbar, you can add overflow here */
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0rem 2rem;
    padding: 3px;
    scroll-behavior: smooth;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.btn {
    position: absolute;
    box-shadow: 0 0 6.1px 0.9px grey;
    padding: 5px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: grey;
    text-align: center;
    color: white;
    border-radius: 50%;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.disable {
    opacity: 0.5;
    pointer-events: none;
}

.child {
    flex: 0 0 100%;
    padding: 5px 5px;
    background-color: rgb(223, 239, 255);
    text-align: center;
    width: 100%;
    margin-right: 100%;
    border-radius: 21px;
}

/* logTime */
.RequestTextarea {
    resize: none;
}

/* react-calendar */

.Calendar {
    width: 30%;
    max-width: 350px;
    padding-right: 30px;
    
}
.react-calendar {
    width: 350px;
    max-width: 100%;
    background: white;
    border: 1px solid #a0a096;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.125em;
    box-shadow: 0px 5px 5px #a0a0a0;
    background-color: rgb(223, 239, 255);
}

.react-calendar--doubleView {
    width: 700px;
}

    .react-calendar--doubleView .react-calendar__viewContainer {
        display: flex;
        margin: -0.5em;
    }

        .react-calendar--doubleView .react-calendar__viewContainer > * {
            width: 50%;
            margin: 0.5em;
        }

.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .react-calendar button {
        margin: 0;
        border: 0;
        outline: none;
    }

        .react-calendar button:enabled:hover {
            cursor: pointer;
        }

.react-calendar__navigation {
    height: 44px;
    margin-bottom: 1em;
}

    .react-calendar__navigation button {
        min-width: 44px;
        background: none;
    }

        .react-calendar__navigation button:enabled:hover,
        .react-calendar__navigation button:enabled:focus {
            background-color: #e6e6e6;
        }

        .react-calendar__navigation button[disabled] {
            background-color: #f0f0f0;
        }

.react-calendar__month-view__weekdays {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75em;
}

.react-calendar__month-view__weekdays__weekday {
    padding: 0.5em;
}

.react-calendar__month-view__weekNumbers {
    font-weight: bold;
}

    .react-calendar__month-view__weekNumbers .react-calendar__tile {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75em;
        padding: calc(0.75em / 0.75) calc(0.5em / 0.75);
    }

.react-calendar__month-view__days__day--weekend {
    color: #d10000;
}

.react-calendar__month-view__days__day--neighboringMonth {
    color: #757575;
}

.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
    padding: 2em 0.5em;
}

.react-calendar__tile {
    max-width: 100%;
    text-align: center;
    padding: 0.75em 0.5em;
    background: none;
}

    .react-calendar__tile:disabled {
        background-color: #f0f0f0;
    }

    .react-calendar__tile:enabled:hover,
    .react-calendar__tile:enabled:focus {
        background-color: #e6e6e6;
    }

.react-calendar__tile--now {
    background: #ffff76;
}

    .react-calendar__tile--now:enabled:hover,
    .react-calendar__tile--now:enabled:focus {
        background: #ffffa9;
    }

.react-calendar__tile--hasActive {
    background: #76baff;
}

    .react-calendar__tile--hasActive:enabled:hover,
    .react-calendar__tile--hasActive:enabled:focus {
        background: #a9d4ff;
    }

.react-calendar__tile--active {
    background: #006edc;
    color: white;
}

    .react-calendar__tile--active:enabled:hover,
    .react-calendar__tile--active:enabled:focus {
        background: #1087ff;
    }

.react-calendar--selectRange .react-calendar__tile--hover {
    background-color: #e6e6e6;
}

/* react-calendar end*/

/* validation error text*/
.validation-error {
    color: red;
}

/* Time sheet Week */
.time-sheet-week-input {
    /*/width: -webkit-fill-available;*/
    /* height: -webkit-fill-available;*/
}

.td-grid {
    /* display: grid; */
}

.td-div {
    /*height: 50px;*/
}

/* General Stuff */
.Container {
    box-shadow: 0px 5px 5px #a0a0a0;
    /* text-align: -webkit-center; */
    display: inline-block;
}
.ContainerTitle {
    /* padding: 20px; */
    margin: 0px;
    box-shadow: 0px 5px 5px #a0a0a0;
    background-color: rgb(223, 239, 255);
    /* text-align: -webkit-center; */
    /* display: inline-block; */
}
.ContainerBody {
    padding: 20px;
    display: inline-block;
    background-color: rgb(232, 243, 255);
    /* padding: 20px; */
    /* text-align: -webkit-center; */
    /* display: inline-block; */
}
.ContainerParent {
    text-align: -webkit-center;
}

.general-button-blue {
    background-color: #2c75ff;
    color: white;
    padding: 14px 25px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-block;
}

.general-button-red {
    background-color: #ff452c;
    color: white;
    padding: 14px 25px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-block;
}

.general-button-no-color {
    padding: 14px 25px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-block;
}

.GridWrapper-1 {
    display: grid;
    grid-template-columns: auto;
}

.GridWrapper-2 {
    display: grid;
    grid-template-columns: auto auto;
}

.GridWrapper-3 {
    display: grid;
    grid-template-columns: auto auto auto;
}

.GridWrapper-4 {
    display: grid;
    grid-template-columns: auto auto auto auto;
}

tr th {
    padding-left: 5px;
    padding-right: 5px;
}

