html {
width: 100%;
}

body {
    min-width: 700px;
    background-color: lightgray;
    font-family: Arial, Helvetica, sans-serif;
    margin: 8px;
}

.loginWrapper {
    min-height: calc(100vh - 80px);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    padding: 10px;
    width: 300px;
    height: fit-content;
    border: 3px solid #f1f1f1;
    background-color: white;
    margin: auto;
    position: block;
    border-radius: 10px;
}

.login p {
    width: 90%;
    padding: 3px;
    margin-top: 0%;
    border: none;
    background: white;
}

.login .cancel {
    background-color: gray;
    color: white;
    padding: 8px 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
}


.login input[type=text], .login input[type=password] {
    width: 90%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

.login input[type=text]:focus, .login input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

.login .btn {
    font-size: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.login .btn:hover, .login .cancel:hover {
    opacity: 1;
}

.login .login-error {
    color: red;
}

.login .login-success {
    color: green;
}








.navigation {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
}

.navigation a:hover {
    background-color: #ddd;
    color: black;
}

.navigation  a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.navigation  span {
    padding: 0px 5px;
    margin-top: -1px;
    margin-left: 5px;
    border: 3px solid white;
    border-radius: 100%;
    text-align: center;
    background-color: white;
    color: rgb(65, 62, 62);
}

.navigation a.active {
    background-color: #4CAF50;
    color: white;
  }

.navigation .icon {
    display: none;
}

.navigation .right {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
 



.main {
    margin-top: 50px;
    padding: 10px;
    padding-top: 10px;
    min-height: calc(100vh - 151px);
    background-color: white;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
}

.main .naslov {
    display: inline;
}

.main .addUser {
    float: right;
    margin-right: 15px;
    background-color: #4CAF50;
    text-decoration: none;
    color: white;
    padding: 16px 20px;
    border: 1px solid #4CAF50;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 5px;
}

.main .dashboard .top {
    margin-bottom: 20px;
}

.main .addUser:hover {
    opacity: 1;
}


.listOfWorkers {
    display: grid;
    border: solid 2px black;
    border-radius: 3px;
    grid-gap: 0px;
    grid-template-areas:
    'status workers organisation id type options';
}

.item {
    border-top: solid 1px black;
    height: 30px;
    margin: 0;
    padding: 3px 0px;
}

.sum {
    border-top: solid 3px black;
    height: 30px;
    margin: 0;
    padding: 3px 0px;
}

.center {
    text-align: center;
}

.item form {
    display: inline;
}

.main .icon {
    height: 30px;
    width: 30px;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.main .select-options{
    border: 0;
    background-color: transparent;
    height: 30px;
    width: 30px;
    padding: 0;
    margin: 0 5px;
}

.workers {grid-area: workers;}

.id {grid-area: id;}

.organisation {grid-area: organisation;}

.options {grid-area: options;}

.type {grid-area: type;}

.delete button {
    width: 100%;
    background-color: white;
    padding: 0;
    border: 0;
    border-top: solid 1px black;
    height: 37px;
    color: red;
    font-weight: bold;
}





#first {
    text-align: center;
    border-left: solid 1px black;
}


.new_user {
    margin-top: 50px;
    padding: 10px;
    padding-top: 10px;
    min-height: calc(100vh - 151px);
    background-color: white;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
}

.new_user .naslov {
    display: inline;
}

.new_user .btn {
    background-color: #4CAF50;
    text-decoration: none;
    color: white;
    padding: 16px 20px;
    border: 1px solid #4CAF50;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 5px;
}

.new_user .top {
    margin-bottom: 20px;
}

.new_user .btn:hover {
    opacity: 1;
}

.new_user .basicInfo {
    width: 350px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    border: solid 2px gray;
    border-radius: 10px;
    margin-bottom: 10px;
    
}

.new_user .basicInfo p {
    font-size: 16px;
}

.new_user .basicInfo input, .new_user .basicInfo select {
    font-size: 18px;
}
.new_user .basicInfo label {
    font-size: 24px;
    font-weight: bold;
}

.new_user .basicInfo p, .new_user input, .new_user label {
    margin: 0;
    padding: 0;
}

.new_user select {
    border-width: 2px;
    width: 227px;
}

.new_user .basicInfo label, .new_user input{
    display: block;
}

.new_user .basicInfo .last {
    margin-bottom: 20px;
}

.new_user .basicInfo p, .new_user input {
    height: 20px;
}

.new_user input[type=text], .new_user input[type=email], .new_user select {
    background-color: #f1f1f1;
    width: 330px;
    padding: 3px 2px;
    margin: 3px 0;
}

.new_user .red {
    float: right;
    margin-right: 15px;
    vertical-align: middle;
    background-color: red;
    height: fit-content;
    border: 1px solid red;
    border-radius: 5px;
}

.new_user .green {
    background-color: #4CAF50;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.new_user .row {
    display: flex;
}

.new_user .column {
    flex: 20%;
}

.new_user .signup-error {
    color: red;
}

.new_user .signup-success {
    color: #4CAF50;
}



.user_hours {
    margin-top: 50px;
    padding-top: 10px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 151px);
    padding: 10px;
}

.popup {
    display: none;
    position: absolute;
    left: 0;
    right:0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.7);
}

.popup form {
    padding: 30px;
    border: 3px solid black;
    background-color: white;
    margin: auto;
    border-radius: 10px;
}

.popup input {
    display: block;
    width: 200px;
    height: 20px;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    text-align: center;
}

.popup select {
    display: block;
    width: 230px;
    height: 50px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    text-align-last: center;
}

.popup button {
    display: block;
    font-size: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 230px;
    margin-bottom:10px;
    opacity: 0.8;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.popup button:hover {
    opacity: 1;
}

.popup .red {background-color: red; border: 1px solid red;}

.user_hours .top {
    margin-bottom: 20px;
}

.user_hours .dashboard {
    display: grid;
    border: solid 4px black;
    border-radius: 3px;
    grid-gap: 0px;
    grid-template-areas:
    'came left hours options';
}

.user_hours .filter {
    display: inline-blocks;
}

.user_hours .select_date button {
    display: inline-block;
    color: white;
    padding: 6px 20px;
    border: none;
    cursor: pointer;
    margin-left: 20px;
    opacity: 0.8;
    background-color: #4CAF50;
    border: 2px solid #4CAF50;
    border-radius: 3px;
    margin-right: 20px;
}

.user_hours .select_date button:hover {
    opacity: 1;
}



.user_hours .icon {
    height: 30px;
    width: 30px;
    padding: 0;
    margin: 0;
}

.user_hours .select-options{
    display: absolute;
    border: 0;
    background-color: transparent;
    height: 30px;
    width: 30px;
    padding: 0;
    margin: auto;
    left: 0;
    right: 0;
}

.user_hours .filter {
    display: inline-block;
}



.user_edit {
    margin-top: 50px;
    padding: 10px;
    padding-top: 10px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 141px);
}







.user_settings {
    margin-top: 50px;
    padding: 10px;
    padding-bottom: 20px;
    padding-top: 10px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 500px);
}

.user_settings .forms {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    padding: 15px 35px;
    border: 3px solid black;
    border-radius: 5px;
}

.user_settings input {
    display: block;
    height: 20px;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    text-align: center;
}

.user_settings input[type=checkbox] {
    vertical-align: -5px;
    display: inline;
}

.user_settings label {
    display: block;
    margin-top: 5px;
}

.user_settings form {
    width: fit-content;
    padding: 10px 40px;
    border: 1px solid black;
    border-radius: 3px;
}

.user_settings .form_margin {
    margin-bottom: 30px;
}

.user_settings button {
    display: block;
    font-size: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 230px;
    margin-bottom:10px;
    opacity: 0.8;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.user_settings button:hover {
    opacity: 1;
}

.user_settings .card_edit_input {
    margin-bottom: 5px;
}

.user_settings .red {
    background-color: red;
    border: 1px solid red;
    color: black;
}






.user_export_pdf {
    margin-top: 50px;
    padding: 10px;
    padding-top: 10px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 151px);
}

.user_export_pdf .top {
    margin-bottom: 20px;
}

.user_export_pdf .dashboard {
    display: grid;
    border: solid 4px black;
    border-radius: 3px;
    grid-gap: 0px;
    grid-template-areas:
    'date daily nightly daily_extra nightly_extra sum_hours';
}

.user_export_pdf .filter {
    display: inline-blocks;
}

.user_export_pdf .select_date button {
    display: inline-block;
    color: white;
    padding: 6px 20px;
    border: none;
    cursor: pointer;
    margin-left: 20px;
    opacity: 0.8;
    background-color: #4CAF50;
    border: 2px solid #4CAF50;
    border-radius: 3px;
    margin-right: 20px;
}

.user_export_pdf .select_date button:hover {
    opacity: 1;
}



.user_export_pdf .icon {
    height: 30px;
    width: 30px;
    padding: 0;
    margin: 0;
}

.user_export_pdf .select-options{
    display: absolute;
    border: 0;
    background-color: transparent;
    height: 30px;
    width: 30px;
    padding: 0;
    margin: auto;
    left: 0;
    right: 0;
}

.user_export_pdf .filter {
    display: inline-block;
}

.user_export_pdf .red {
    color: red;
}





.edit_user_hours {
    margin-top: 50px;
    padding: 10px;
    padding-bottom: 0px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 141px);
}

.edit_user_hours h1 {
    margin-bottom: 50px;
}

.edit_user_hours form {
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    border: solid 2px gray;
    border-radius: 10px;
    margin-bottom: 10px;
}

.edit_user_hours label {

    font-size: 20px;
}

.edit_user_hours p {

    font-size: 12px;
}

.edit_user_hours input {
    width: 200px;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    text-align: center;
}

.edit_user_hours input:focus {
    background-color: #ddd;
    outline: none;
}

.edit_user_hours button {
    display: block;
    font-size: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 230px;
    margin-bottom:10px;
    opacity: 0.8;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.edit_user_hours button:hover {
    opacity: 1;
}

.edit_user_hours .red {
    background-color: red;
    color: black;
}






.add_organisation {
    margin-top: 50px;
    padding-top: 10px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 151px);
    padding: 10px;
}






.user_export_excel {
    margin-top: 50px;
    padding: 10px;
    padding-top: 10px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 138px);
}



.global_settings{
    margin-top: 50px;
    padding: 10px;
    padding-bottom: 20px;
    padding-top: 10px;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
    background: white;
    min-height: calc(100vh - 161px);;
}

.global_settings .forms {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    padding: 15px 35px;
    border: 3px solid black;
    border-radius: 5px;
}

.global_settings form {
    width: fit-content;
    padding: 10px 40px;
    border: 1px solid black;
    border-radius: 3px;
}

.global_settings .form_margin {
    margin-bottom: 30px;
}

.global_settings label {
display: inline;
}

.global_settings .start {
padding-right: 10px;
}

.global_settings .end {
padding-left: 60px;
padding-right: 10px;
}

.global_settings input {
display: inline;
}

.global_settings button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    font-size: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 230px;
    margin-bottom:10px;
    opacity: 0.8;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.global_settings button:hover {
    opacity: 1;
}




.add_organisation {
    margin-top: 50px;
    padding: 10px;
    padding-top: 10px;
    min-height: calc(100vh - 151px);
    background-color: white;
    border: 3px solid #f1f1f1;
    border-radius: 10px;
}

.add_organisation .naslov {
    display: inline;
}

.add_organisation .btn {
    background-color: #4CAF50;
    text-decoration: none;
    color: white;
    padding: 16px 20px;
    border: 1px solid #4CAF50;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 5px;
}

.add_organisation .top {
    margin-bottom: 20px;
}

.add_organisation .btn:hover {
    opacity: 1;
}

.add_organisation .red {
    float: right;
    margin-right: 15px;
    vertical-align: middle;
    background-color: red;
    height: fit-content;
    border: 1px solid red;
    border-radius: 5px;
}

.add_organisation .green {
    background-color: #4CAF50;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.add_organisation .row {
    display: flex;
}

.add_organisation .column {
    flex: 20%;
}

.add_organisation .signup-error {
    color: red;
}

.add_organisation .signup-success {
    color: #4CAF50;
}

.add_organisation .basicInfo {
    width: 350px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    border: solid 2px gray;
    border-radius: 10px;
    margin-bottom: 10px;
    
}

.add_organisation .basicInfo p {
    font-size: 16px;
}

.add_organisation .basicInfo input {
    font-size: 18px;
}
.add_organisation .basicInfo label {
    font-size: 24px;
    font-weight: bold;
}

.add_organisation .basicInfo p, .add_organisation input, .add_organisation label {
    margin: 0;
    padding: 0;
}

.add_organisation .basicInfo label, .add_organisation input{
    display: block;
}

.add_organisation .basicInfo .last {
    margin-bottom: 20px;
}

.add_organisation .basicInfo p, .add_organisation input {
    height: 20px;
}

.add_organisation input[type=text]{
    background-color: #f1f1f1;
    width: 330px;
    padding: 3px 2px;
    margin: 3px 0;
}









.list:nth-child(odd) {
    background-color: #f1f1f1;
}

.not_alowed {
    padding: 10px;
    width: 700px;
    height: fit-content;
    border: 3px solid #f1f1f1;
    background-color: white;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 10px;
    text-align: center;
}


.footer {
    position: relative;
    height: 50px;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-weight: 450;
    margin: 0px;
    padding: 0px;
}


@media (max-width : 800px) {
    .main {margin-right: 8px;}
    .user_hours {margin-right: 8px;}
    .user_export_pdf {margin-right: 8px;}
    .global_settings {margin-right: 8px;}
    .user_settings {margin-right: 8px;}
    .edit_user_hours {margin-right: 8px;}
    .new_user {margin-right: 8px;}
}
