@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --primary: #0066AB;
    --primary-light: #ff8ba7;
    --primary-hover: #02538A;
    --primary-list-hover: #D5EEFF;
    --secondary: #59add9;
    --secondary-light: #63c1f1;
    --secondary-hover: #4484a5;
    --warning: #4e4e4e;
    --warning-hover: #828282;
    --warning-light: #fde68a;
    --dark: #4e4e4e;
    --dark-hover: #424141;
    --background: #faeee7;
    --card-background: #faeee7;
    --headline: #33272a;
    --text: #594a4e;
    --button-primary: #ea546f;
    --button-primary-light: #ff5b6e;
    --button-primary-dark: #cc4858;
    --button-secondary: #9F2042;
    --button-secondary-light: #ff6f60;
    --button-secondary-dark: #773748;
    --primary-button: #ff8ba7;
    --primary-button-text: #33272a;
    --table-head: #102948;
    --timein: #0A8754;
}

.modal-header {
    padding-left: 15px !important;
}

.form-input-field input,
.form-input-field textarea,
.form-input-field select {
    outline: none !important;
    padding: 8px !important;
    border: 1px solid gray !important;
    border-radius: 5px !important;
    margin: 0 !important;
    background: white;
    width: 100%;
    color: black;
    height: 35px !important;
    font-size: 12px;
}
   

    .form-input-field input:focus,
    .form-input-field textarea:focus,
    .form-input-field select:focus {
        border-color: var(--primary) !important;
        box-shadow: none !important;
        transition: 0.2s;
    }

input {
  box-sizing: border-box !important;
}

.form-input-field label {
  font-size: 12px;
}

.button-dark {
    background: var(--dark);
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    border: 1px solid ;
    transition: 0.2s;
}

.button-dark:hover {
  background: var(--dark-hover);
  color: white;
}

.button-primary {
  background: var(--primary);
  font-size: 12px;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  color: white;
  border: none;
  cursor: pointer;
  border: 1px solid var(--primary);
  transition: 0.2s;
}

.button-primary:hover {
  background: var(--primary-hover);
  color: white;
  border-color: #02538A;
}

.align-label{
    display:flex;
    align-items:center;
}

/*.button-danger {
  background: var(--button-secondary);
  font-size: 12px;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  color: white;
  border: none;
  cursor: pointer;
  border: 1px solid var(--button-secondary);
  transition: 0.2s;
}*/
.button-danger {
    background: #E73939;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    border: 1px solid #E73939;
    transition: 0.2s;
}
.button-download {
    background: #A63446;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    border: 1px solid #A63446;
    transition: 0.2s;
}
.button-danger:hover {
  background: var( --button-secondary-dark);
  color: white;
  border-color: var( --button-secondary-dark);
}
.filterBox {
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    margin-top: 15px;
}
.button-save {
    background: #128400;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    border: 1px solid #128400;
    transition: 0.2s;
    
}
    .button-save:hover {
        background: #038E1C;
        color: white;
        border-color: #038E1C;
    }
    .buttonExport {
        background: var(--table-head) !important;
        font-size: 12px;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: 600;
        color: white;
        border: none;
        cursor: pointer;
        border: 1px solid var(--table-head) !important;
        transition: 0.2s;
    }

.button-edit {
    background: #A63446;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    border: 1px solid #A63446;
    transition: 0.2s;
}

.button-warning {
  border: 1px solid var(--primary) !important;
  background: transparent;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  color: var(--primary-hover);
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.button-upload {
    background: #0A8754;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    border: 1px solid #0A8754;
    transition: 0.2s;
}

.pagination {
  font-family: "Inter" !important;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.button-sm {
  font-size: 12px;
  padding: 5px 10px;
}

.button-warning:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark) !important;
}

table {
  width: 100% !important;
  border-spacing: 0px !important;
  background: white;
  border-radius: 10px;
  padding: 0 !important;

  overflow: hidden;
  box-shadow: rgb(2, 44, 32, 0.1) 0 10px 20px 1px;
}

table thead tr {
    color: white !important;
    background: var(--table-head) !important;
}

td,
th {
  padding: 15px !important;
}

td {
  border-top: 1px dotted var(--primary-light);
}

th {
  font-size: 14px !important;
}

.dataTables_processing {
  color: var(--primary);
  background: transparent;
  font-size: 30px;
  border: none;
  box-shadow: none;
}

table td button,
table td a {
  width: 60px;
  text-align: center;
}

table td > div {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

input {
  padding: 10px;
  font-size: 12px;
}

button,
a {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  height: 100%;
  min-width: 1200px;
}

body {
  overflow-y: auto;
  padding-right: 0px !important;
  background-color: white !important;
}

body::-webkit-scrollbar {
  width: 5px;
  height: 12px;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #6f6f6f;
}

img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

nav {
  font-weight: bold;
  text-transform: uppercase;
}

select > option {
  font-weight: bold;
  padding: 3px 0px;
}

.module {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

textarea {
  resize: none;
  min-height: 100px;
}

/*===== NEW CSS ======*/

.login-border {
  padding: 30px 30px 30px;
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
  border: 1px solid #eceff3;
}

.login-container {
  padding: 20px !important;
  background: #fff;
  border-radius: 10px !important;
  border: 1px solid #eeeeee;
}

.login-logo {
  height: 75px;
  margin-top: 20px !important;
  /* padding: 15px; */
  /* margin-bottom: 20px; */
}

#btnSignIn {
  border-radius: 15px;
  background-color: #119f30 !important;
  color: white;
  width: 200px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.19);
}

#btnSignIn:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.nav-logo > img {
  width: 200px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logout-link {
  margin-top: 15px;
}

.logo-nav .navbar-brand {
  padding: 8px 15px !important;
  padding-bottom: 55px !important;
}

.logo-nav.navbar-default .navbar-nav > li > a {
  padding: 21px 30px;
  color: #102948 !important;
}

.menu-nav.navbar-default .navbar-nav > li > a {
  color: white;
}

#footer {
  background-color: #102948 !important;
  height: 40px !important;
  padding: 10px 15px !important;
}

#content {
  padding-bottom: 0px !important;
}

.dashboardPanel {
  border-radius: 20px;
}

input[type="date"].valid,
input[type="date"]:focus.valid,
input[type="datetime-local"].valid,
input[type="datetime-local"]:focus.valid,
input[type="email"].valid,
input[type="email"]:focus.valid,
input[type="number"].valid,
input[type="number"]:focus.valid,
input[type="password"].valid,
input[type="password"]:focus.valid,
input[type="search-md"].valid,
input[type="search-md"]:focus.valid,
input[type="tel"].valid,
input[type="tel"]:focus.valid,
input[type="text"].valid,
input[type="text"]:focus.valid,
input[type="time"].valid,
input[type="time"]:focus.valid,
input[type="url"].valid,
input[type="url"]:focus.valid,
textarea.materialize-textarea.valid,
textarea.materialize-textarea:focus.valid {
  border-bottom: 1px solid #4183f0;
  box-shadow: 0 1px 0 0 #4183f0;
}

#search-filter,
#export-attendance,
.createButton {
  border-radius: 7px;
}

.card {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.19);
  border-radius: 20px;
}

.card:hover,
#search-filer:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.required {
    color : red
}
input[type="text"]:disabled {
    background: #e7e7e7;
}
/*#box-1:hover, #box-2:hover, #box-3:hover, #box-4:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

#box-1, #box-2, #box-3, #box-4 {
    border-radius: 30px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 2px 5px 0 rgba(0,0,0,0.19);
}*/
