/* Write your custom CSS here */


:root[data-theme='dark'] {
    --navHeight: 70px;
    --background-bg: #181821;
    --sidebar-bg: #1f1f2b;
    --btn-color: #e9f0f2;
    --btn-bg-color: #181821;
    --btn-border-color: #e9f0f2;
    --btn-bg-hover: #FAFAFA;
    --btn-color-hover: #000;
    --form-control-border-color: #fff;
    --notification-dropdown-background: #1f1f2b;
    --notification-dropdown-color: #fff;
    --bg-font: #9a9cab;
    --bg-active-link: #9a9cab;
    --hover-collapsible: #555;
    --checkboxlist-background-color: #181821;
}

:root[data-theme='light'] {
    --navHeight: 70px;
    --background-bg: #FAFAFA;
    --sidebar-bg: #E7E9EB;
    --btn-color: #000;
    --btn-bg-color: #FAFAFA;
    --btn-border-color: #000;
    --btn-bg-hover: #181821;
    --btn-color-hover: #fff;
    --form-control-border-color: #000;
    --notification-dropdown-background: #E7E9EB;
    --notification-dropdown-color: #000;
    --bg-font: #000;
    --bg-active-link: #E7E9EB;
    --hover-collapsible: #f8f9fa;
    --checkboxlist-background-color: #fdfdfd;
}

  * {
    margin: 0;
    padding: 0;
  }
  
  .switch {
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .switch div {
    position: relative;
    display: block;
    background: #eee;
    width: 30px;
    border-radius: 50px;
    padding: 0 5px;
    box-sizing: border-box;
    cursor: pointer;
  }
  
  .fa-adjust {
    transform: rotate(180deg);
  }
  
  .switch input {
    display: none;
  }
  
  .slider {
    background-color: #999;
    transition: 0.4s;
    border-radius: 34px;
    height: 12px;
    width: 12px;
    display: inline-block;
    position: relative;
  }
  
  input:checked + .slider {
    transform: translateX(8px);
  }
  
  nav {
    background: #d2cca1;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    position: relative;
  }
  
  nav ul {
    list-style-type: none;
  }
  
  nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    height: var(--navHeight);
    padding: 0 10px;
  }
  
  nav ul li {
    padding: 12px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 4px;
    position: relative;
  }
  
  nav ul li:hover {
    background-color: #dedaba;
  }
  
  main {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    height: calc(100vh - var(--navHeight));
  }

  :root {
    --navHeight: 70px;
    --sage: #D2CCA1;
    --paleSpringBud: #DEDABA;
    --goldCrayola: #E5C687;
    --richBlackForeground: #0F1A20;
    --white: #f8f8f8;
    --black: #222;
    --msuGreen: #2D4739;
    --gray: #eee;
  }

  .light-theme {
    --themeDropDownBg: var(--goldCrayola);
    --themeIconBorderColor: var(--sage);
    --navBg: var(--sage);
    --navLinkHoverBg: var(--paleSpringBud);
    --mainBg: var(--goldCrayola);
    --fontColor: var(--black);
  }
  
  .dark-theme {
    --themeDropDownBg: var(--msuGreen);
    --themeIconBorderColor: var(--richBlackForeground);
    --navBg: var(--richBlackForeground);
    --navLinkHoverBg: var(--msuGreen);
    --mainBg: var(--msuGreen);
    --fontColor: var(--white);
  }

  * {
    color: var(--fontColor);
  }
  
  nav {
    background: var(--navBg);
  }
  
  nav ul li:hover {
    background-color: var(--navLinkHoverBg);
  }
  
  main {
    background: var(--mainBg);
  }
 /** drag **/
  #modules {
    padding: 20px;
    background: #eee;
    margin-bottom: 20px;
    z-index: 1;
    border-radius: 10px;
  }
  
  #dropzone-1,#dropzone-2 {
    padding: 20px;
    background: #eee;
    min-height: 100px;
    margin-bottom: 20px;
    z-index: 0;
    border-radius: 10px;
  }
  
 /* .active {
    outline: 1px solid red;
  }*/
.active, .collapsible:hover {
    background-color:var(--hover-collapsible) !important;
}
  .hover {
    outline: 1px solid blue;
  }
  
  .drop-item {
    cursor: pointer;
    margin-bottom: 10px;
    background-color: rgb(255, 255, 255);
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid rgb(204, 204, 204);
    position: relative;
  }
  
  .drop-item .remove {
    position: absolute;
    top: 4px;
    right: 4px;
  }

  .col-form-label-lg {
    margin-top: 25px;
}



.dark-mode {
  background-color: rgb(255, 255, 255);
  color: rgb(3, 3, 3);
 

   }


/* scroll bar style */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #A0A0A0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    /* floating language button */
.fixed-action-btn {
    position: fixed;
    width: 60px;
    height: 40px;
    bottom: 10px;
    right: 10px;
    background-color: #0C9;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index:9999;
}
.btn-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: black;
}
/* shake floating button */
.fixed-action-btn:hover {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 1s;
    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}





/*
    ::-webkit-datetime-edit {
    padding: 1em;
}
    ::-webkit-datetime-edit-text {
    color: red;
    padding: 0 0.3em;
}

::-webkit-datetime-edit-month-field {
    color: blue;
}

::-webkit-datetime-edit-day-field {
    color: green;
}

::-webkit-datetime-edit-year-field {
    color: purple;
}*/

::-webkit-inner-spin-button {
    display: none;
}

::-webkit-calendar-picker-indicator {
    filter: invert(100%);
}

/*filter buttons */
.filter-btn {
    left: 45%;
    margin-top: 18px;
}
.edit-btns {
    margin-top: 18px;
}
.bootstrap-datetimepicker-widget{
    background-color:white;
}
.search-form {
    float: right ;
}
.pagination li {
    width: 20px;
    text-align: center;
}