
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.active {
    color: #FFBC11;
}


.login-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: #1e1e1e;
    border-radius: 10px;
}

.login-panel{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
}

.logo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #1b1b24;
    background-color: #1b1b24;
}

.logo {
    max-width: 200px;
    margin-bottom: 10px;
}

.login-section {
    flex: 1;
    padding: 30px;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    background-color: #13131d;
}

h1, h2 {
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

input[type="text"],input[type="number"],input[type="email"], input[type="password"]{
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: #333333!important;
    color: #fff!important;
}

textarea {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: #333333!important;
    color: #fff!important;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
    outline: none!important;
    border: none!important;
}

.remember-me {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.remember-me label {
    margin-left: 5px;
}

.login-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #008cba;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.login-button2 {
    width: 100%;
    padding: 10px;
    border: 1px solid #008cba;
    border-radius: 20px;
    background-color: transparent;
    color: #008cba;
    font-weight: normal;
    cursor: pointer;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #008cba;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-panel select {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: #333333;

    color: #777;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
}


.select3 {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: #333333;

    color: #777;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
}

body {
    font-family: 'Poppins', sans-serif!important;
    margin: 0;
    color: #fff;
    background-color: #13131D;
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 270px;
    background-color: #1b1b24;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.logo img {
    width: 100%;
}

.menu {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.menu li {
    margin: 10px 0;
    padding: 5px 10px;
    cursor: pointer;
}

.menu .active {
    border: 2px solid #FFBC11;
    border-radius: 18px;
    color: #FFBC11;
    background-color: #13131D;
}

.user{
    line-height: 18px;
}

.user .active {
    color: #FFBC11;
}

.main-content {
    margin-left: 270px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 270px; /* Questo corrisponde alla larghezza della sidebar */
    width: calc(100% - 270px); /* Rimuovere la larghezza della sidebar dalla larghezza totale */
    background-color: #13131D;
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Assicura che la navbar sia sopra altri contenuti */
}

.locations button {
    font-family: 'Poppins', sans-serif;
    background: none;
    border: none;
    color: inherit;
    padding: 5px 20px;
    cursor: pointer;
    min-width: 150px;
}

.locations button:focus {
    outline: none!important;
}



.locations .active {
    border: 2px solid #FFBC11;
    border-radius: 18px;
    color: #FFBC11;
    background-color: #1b1b24;
}

.user {
    display: flex;
    align-items: center;
}

.user img {
    border-radius: 50%;
    margin-right: 10px;
    width: 40px;
}

.dashboard-header {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dashboard-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 120px;
}

.card {
    background-color: #1b1b24;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

form{
    width: 100%;
}

.form-group {
    width: 100%;
}

.input-group-prepend {
    display: flex;
    align-items: center;
    background-color: #0076d8;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 10px;
    color: #fff;
}

.card-body .active {
    color: #FFBC11;
}

thead{
    border-radius: 18px;
}

thead tr:first-child  {
    background-color: #fff!important;
    color: #13131D;
}
.table.dataTable th:first-child { border-top-left-radius: 20px;!important; }
.table.dataTable th:last-child { border-top-right-radius: 20px;!important; }
.table.dataTable th:first-child { border-bottom-left-radius: 20px;!important; }
.table.dataTable th:last-child { border-bottom-right-radius: 20px;!important; }

.table.dataTable thead th {
    border: none;
    background-color: #fff;
    color: #13131D;
    font-weight: bold;
    padding: 10px;
    text-align: left;
}

.table.dataTable tbody tr:first-child td{
    border: none;
}

.card h5 {
    font-size: 14px;
}

.form-switch {
    display: inline-block;
    cursor: pointer;
}

.form-switch input {
    display: none;
}

.form-switch label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #0076d8;
    border-radius: 20px;
    margin: 0;
}

.form-switch label {
    background-color: #0076d8;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    transition: all 0.3s;
}

.form-switch input:checked + label {
    background-color: #1b1b24;
    color: #fff;
}

.form-switch label:active {
    background-color: #1b1b24;
    color: #fff;
}

.form-switch label:active {
    background-color: #1b1b24;
    color: #fff;
}



.btn{
    font-family: 'Poppins', sans-serif!important;
    border-radius: 18px;
    background-color: #3b7ca3;
    border-color: #3b7ca3;
}

.pagination {
    font-family: 'Poppins', sans-serif!important;
    font-size: 12px;
}

.data{
    background: #FFBC11;
    color: #000;
    border: 1px solid #FFBC11;
}