*{
    font-family: 'Poppins', sans-serif;
}

.alert.alert-danger.notification {
    margin: 5px auto;
}

.table-container {
    margin-left: 5px;
    margin-right: 5px;
}

h2 {
    margin-left: 5px;
}

/*###LOGIN PAGE###*/
.login-page{
    background-image: url("../img/background/login_background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.logo{
    padding: 20px 0 50px 20px;
}
.nav-logo{
    height: 50px;
    width: 200px;
}
.login-title{
    color: white;
    display: flex;
    justify-content: center;
}
.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    margin-top: -120px;
}
.container{
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 40px 15px 100px 15px;
    border: #fff 1px solid;
    border-radius: 20px;
}

header{
    color: #fff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
}
.input-field{
    display: flex;
    flex-direction: column;
}
.input{
    height: 45px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 30px;
    color: #fff;
    padding: 0 0 0 45px;
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-input-placeholder{
    color: #fff;
}
.submit{
    border: none;
    border-radius: 30px;
    font-size: 18px;
    height: 45px;
    outline: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}
.submit:hover{
    box-shadow: 1px 2px 7px 1px white;
}
.fa-user, .fa-lock {
        position: relative;
        top: -33px;
        left: 17px;
        color: #fff;
        z-index: -1;
}

/*###SIDE NAVBAR###*/
.side-nav-body{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
button{
    cursor: pointer;
}

.side-nav{
    position: absolute;
    top: 100px;
    right: 50px;
    width: 250px;
}

.navigation{
    position: fixed;
    right: -500px;
    width: 300px;
    height: 100%;
    background-color: #000;
    transition: .5s;
    top: 0px;
}

.navigation ul li{
    color: #fff;
    text-align: right;
    text-transform: uppercase;
    list-style-type: none;
    font-size: 1.5em;
    padding: 20px 30px;
    border-bottom: 1pt solid #252525;
}

.hamburger, .bar{
    position: fixed;
}

.hamburger{
    display: block;
    top: 5%;
    left: 95%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    border: 0;
    background: 0 0;
}

.bar{
    top: 3px;
    background: #e25f22;
    width: 100%;
    height: 4px;
    transition: all .3s ease-in;
}

#bar2{
    top: 11px;
}

#bar3{
    top: 19px;
}

.navigation.active{
    right: 0;
}

.hamburger.open #bar1{
    background-color: #fff;
    transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.open #bar2{
    background-color: transparent;
}

.hamburger.open #bar3{
    background-color: #fff;
    transform: rotate(-45deg) translate(6px, -5px);
}

.side-nav-list .side-nav-item {
    cursor: pointer;
    height: 100%;
    padding: 10px 30px;
    transition: .4s;
}

.side-nav-list .side-nav-item:hover {
    background: #b69955;
}

.side-nav-list .side-nav-link {
    color: #f1f1f1;
    font-size: 25px;
    font-weight: 500;
    text-decoration:none;
}

/*###VACATION REQUEST###*/
.vac-req-body{
background-color: #2f2f31;
color: white;
display: grid;
background-repeat: no-repeat;
background-position-x: 10%;
background-position-y: 25%;
background-size: 10%;
}
.form-first {
    justify-content: center;
}
.row {
    justify-content: center;
}
.submit-btn {
margin-top: 10px;
}
.card-container {
display: grid;
justify-content: center;
padding: 30px 0 10px 0;
}
.worker-data {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    padding: 15px 300px 10px 15px;
}
.manual-holiday-container {
    background-color: white;
    margin-top: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 5px;
    padding: 15px 300px 10px 15px;
}
.number-input {
    border: 1px solid black;
}
.form-group.col-md-4 {
    margin-top: 25px;
}
.card-name{
    padding: 0 0 10px 0;
    color: black;
}
.submit-btn {
  position: relative;
  transform: translate(0%, 0%);
  color: #83df15;
  text-decoration: none;
  display: inline-block;
  font-family: Montserrat;
  text-transform: uppercase;
  padding: 0.5em 2em;
  border: 2px solid #83df15;
  transition: 0.02s 0.2s cubic-bezier(0.1, 0, 0.1, 1);
  background: #2f2f31;
  font-size: 1.1em;
    ####83df15###
}
.submit-btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #83df15;
  transition: 0.3s 0.2s cubic-bezier(0.1, 0, 0.1, 1), left 0.3s cubic-bezier(0.1, 0, 0.1, 1);
  z-index: -1;
}
.submit-btn::after {
  content: "";
  display: inline-block;
  background-image: url("https://cdn-icons-png.flaticon.com/128/109/109617.png");
  position: absolute;
  top: 0;
  left: calc(100% - 3em);
  right: 3em;
  bottom: 0;
  background-size: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s cubic-bezier(0.1, 0, 0.1, 1);
}
.submit-btn:hover {
  padding: 0.5em 3.5em 0.5em 0.5em;
}
.submit-btn:hover::before {
  left: calc(100% - 3em);
  right: 0;
  transition: 0.3s cubic-bezier(0.1, 0, 0.1, 1), left 0.3s 0.2s cubic-bezier(0.1, 0, 0.1, 1);
}
.submit-btn:hover::after {
  right: 0;
  transition: right 0.3s 0.2s cubic-bezier(0.1, 0, 0.1, 1);
}
.card-data{
    color: black;
}

.slt-title, .vac-title {
    color: #ff5000;
    display: flex;
    justify-content: center;
    padding: 10px;
}


/*###VACATION PENDING###*/
.accept-button, .reject-button, .modify-button{
    background: none;
}

/*###VACATION CONFIRMED###*/
.name-search-bar {
    margin-left: 5px;
}

/*###EXC DAYS###*/
.exc-form-group, .exc-days.radio-but{
    padding: 10px;
}
.submit-button {
    padding-bottom: 15px;
    justify-content: center;
    display: grid;
}

/*###LOAN PAGE###*/
.loan-back {

}

.form-group-loan {
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
}

.loan-label-title {
    padding: 0 15px 0 0;
}

.success-button-loan {
    display:flex;
    justify-content:center;
}

.delete-button {
    background: none;
}

#user {
    padding: 0 10px 0 10px;
}

/*########### WORKER REG #################*/
.page-title {
    display: flex;
    justify-content: center;
}
.worker-reg-form {
    margin: 0 auto;
    text-align: left;
    padding: 10px;
    max-width: 600px;
}
.worker-reg-form-group {
    padding: 10px;
}
.success-btn {
    padding: 10px;
    display: flex;
    justify-content: center;
}
 select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
}
select option {
        background-color: #f5f5f5;
        padding: 5px;
        border-bottom: 1px solid #ccc;
}
select option:checked {
        background-color: #3498db;
        color: white;
}

/*########### EXCEL EXPORT ############*/

.form-group-excel {
    display: grid;
    border: 1px solid lightgrey;
    padding: 10px;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto;
}

.form-group-excel .form-group {
    margin: 0;
    padding: 10px;
    display: grid;
    justify-content: center;
}


/*####### PROFILE PAGE #######*/
.profile-form-group {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.profile-form-group .form-group {
    width: 100%;
}

.cost-centres {
    text-align: center;
    margin: 10px 0px 30px 0px;
}

/*################# CONFIRMED HOLIDAYS EDIT PAGE ###############*/
.form-group-cf {
    padding: 5px;
}


/*################# USER GUIDE ###############*/
.manual-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            text-align: justify;
}
.main-title {
            text-align: center;
            color: #333;
            font-size: 28px;
            margin-bottom: 20px;
}
.segment-title {
            text-align: center;
            color: #555;
            font-size: 20px;
            margin-top: 40px;
            margin-bottom: 10px;
}
.segment {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
}
.guide-img {
            display: block;
            max-width: 100%;
            margin: 20px auto;
}


