/*==================== GOOGLE FONTS ====================*/

@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regulqr,500,600,700,800,900);
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/*==================== VARIABLES CSS ====================*/

/*---------------------RACK DESIGN-----------------------------------*/

.rack-design{
    display: flex;
    margin:5px 0;
    justify-content: center;
    gap:10px;
}

.rack-design a{
    text-decoration: none;
    color: black;
}

.rack-design a:hover ul{
    border:4px solid;
}

.rack-design ul{
    background-color:white;
    list-style: none;
    padding:6px;
    text-align: center;
    font-size:14px;
    border-radius: 0 0 10px 10px;
    border-top: 4px solid black;
    min-width:80px;
    min-height:118px;
}

.rack-design a ul.strain-abwt{
    border-color:#9DD583;
}

.rack-design a ul.strain-abwt li:first-child{
    color:#9DD583;
}

.rack-design a ul.strain-mpeg1{
    border-color:#FF6363;
}

.rack-design a ul.strain-mpeg1 li:first-child{
    color:#FF6363;
}

.rack-design a ul.strain-casper{
    border-color:#FFA9C9;
}

.rack-design a ul.strain-casper li:first-child{
    color:#FFA9C9;
}

.rack-design a ul.rack-free-space{
    border-color:gray;
    background-color:#999;
}

.rack-design a ul.rack-free-space li:first-child{
    color:gray;
}

.rack-design a ul li:first-child{
    text-align: right;
    font-size:13px;
    font-weight:bold;
}

.rack-design a ul li{
    font-size:12px;
    font-weight:bold;
}

.rack-design a ul li:last-child{
    font-size:12px;
    line-height: 12px;
    font-weight:bold;
    color:var(--low-gray-color);
}

.rack-design a ul li.mf-tank-number{
    font-size: 20px;
    line-height: 24px;
    margin-top:6px;
}

.rack-design a ul li.mf-tank-strain{
    font-size: 16px;
    line-height: 16px;
    margin-bottom:6px;
}

.rack-design a ul li.mf-tank-date{
    font-size: 12px;
    color:var(--mid-gray-color);
}


/*-----------------------------------------------------------*/

:root {
    /*========== COLORS ==========*/
    --first-color: hsl(248, 74%, 58%);
    --black-color: hsl(248, 24%, 10%);
    --white-color: #fff;
    --blue-color: hsl(205, 100%, 69%);
    --dark-blue-color: hsl(205, 57%, 50%);
    --gray-color: hsl(359, 0%, 97%);
    --low-gray-color: hsl(359, 0%, 75%);
    --mid-gray-color: hsl(359, 0%, 55%);
    --body-color: hsl(248, 100%, 99%);

    --xxl-size: 32px;
    --xl-size: 24px;
    --l-size: 20px;
    --normal-size: 18px;
    --small-size: 16px;
    --xs-size: 14px;


}

/*------------------------------ TASK LIST --------------------------*/
.room-routine-tasks-list h3{
    text-transform: uppercase;
    padding-bottom:4px;
    border-bottom: 2px solid #D5DFE4;
}

.sub-category {
    margin: 10px 0;
    overflow: hidden;
}

.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid;
    padding-left:10px;
    cursor: pointer;
}

.arrow {
    transition: transform 0.3s ease;
}

.sub-header.active .arrow {
    transform: rotate(90deg);
}

.task-list {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;  /* animate padding too */
}

.task-list.open {
    max-height: 350px;      /* or any height you want */
    overflow-y: auto;
}

.task-list-row{
    display:flex;
    border:2px solid;
    margin: 6px 0;
    padding: 10px;
    border-radius:10px;
    font-size: 13px;
    align-items: center;
}

.task, .task-list-icon{
    gap:6px;
}

.task, .task a{
    display: flex;
    align-items: center;
}

.task-list-icon{
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}


/*--------------------------------------------------------------------*/

/*==================== BASE ====================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body.login {
    background-image: url(../content/img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background: var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

body {
    background: var(--gray-color);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1 !important;
}

input[type=number]{
    border-radius:10px;
    padding:5px;
    text-align:center;
    border:none;
    margin:4px;
}

.scrollable-container{
    overflow-y:auto;
    height:82%;
}

/*==================== LOGIN ====================*/

.wrapper {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: var(--white-color);
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: var(--xxl-size);
    text-align: center;
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-size: var(--small-size);
    color: var(--white-color);
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: var(--white-color);
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--small-size);
}

.wrapper .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: var(--xs-size);
    margin: -15px 0 15px;
}

.wrapper .remember-forgot label input {
    accent-color: var(--white-color);
    margin-right: 3px;
    ;
}

.wrapper .remember-forgot a {
    color: var(--white-color);
    text-decoration: none;
}

.wrapper .remember-forgot a:hover {
    text-decoration: underline;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: var(--white-color);
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: var(--small-size);
    color: var(--blue-color);
    font-weight: 600;
}

/*==================== FACILITY ====================*/

.sidebar .facility .salmon-modelfish {
    height: 50px;
    width: 60px;
    display: flex;
    align-items: center;
}

.sidebar .facility .salmon-modelfish i {
    position: absolute;
}

.sidebar .facility .salmon-modelfish i.modelfish {
    opacity: 0;
}

.sidebar .facility .toggle-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.toggle-switch .switch {
    position: relative;
    height: 22px;
    width: 44px;
    border-radius: 25px;
    background: var(--first-color);
}

.switch::before {
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background: var(--black-color);
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.sidebar {
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--white-color);
    padding: 24px;
    transition: all 0.3s;
}

#logo img {
    width: 80%;
}

.nav {
    flex: 1;
}

.menu h3{
    font-size:18px;
}

.sidebar .menu ul li {
    position: relative;
    list-style: none;
    margin-bottom: 10px;
}

.sidebar .menu ul li:last-child{
    margin-bottom:0;
}

.sidebar .menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #98A1A6;
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 30px;
    transition: all 0.3s;
    width:44px;
    height:44px;
}

.sidebar .menu ul li.facilityicon{
    margin-bottom:40px;
}

.sidebar .menu ul li.facilityicon a{
    color: #ffffff;
    background-color:#6FC3FF;
}

.sidebar .menu ul li>a:hover,
.sidebar .menu ul li.active>a {
    color: #6FC3FF;
    background-color: #f6f6f6;
}

.sidebar.active .menu ul li>a:hover,
.sidebar.active .menu ul li.active>a {
    white-space: nowrap;
}

.sidebar .menu ul li .icon {
    font-size: 20px;
}

.sidebar .menu ul li .text {
    flex: 1;
}

.sidebar .menu ul li .arrow {
    font-size: 14px;
    transition: all 0.3s;
}

.sidebar .menu ul li.active .arrow {
    transform: rotate(180deg);
}

.sidebar .menu .sub-menu {
    display: none;
    margin-left: 20px;
    padding-left: 20px;
    padding-top: 5px;
    border-left: 1px solid #f6f6f6;
}

.sidebar .menu .sub-menu li a {
    padding: 10px 8px;
    font-size: 12px;
}

.sidebar .menu:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f6f6f6;
}

.sidebar .menu-btn {
    position: absolute;
    right: -14px;
    top: 2%;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #757575;
    border: 2px solid #f6f6f6;
}

.sidebar .menu-btn:hover i {
    color: #000;
}

.sidebar .menu-btn i {
    transition: all 0.3s;
}

.sidebar.active {
    width: 92px;
}

.main-content.active {
    margin-left: 200px;
}

.sidebar.active .menu-btn i {
    transform: rotate(180deg);
}

.sidebar.active .menu ul li .arrow {
    display: none;
}

.sidebar.active .menu>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar.active .menu>ul>li>a .text {
    position: absolute;
    left: 90px;
    top: 50%;
    padding: 0 10px;
    line-height: 44px;
    transform: translateY(-50%);
    border-radius: 4px;
    color: #fff;
    background-color: #000;
    visibility: hidden;
    transition: all 0.3s;
}

.sidebar.active .menu>ul>li>a .text::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 12px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background-color: #000;
    transform: rotate(45deg);
    z-index: -1;
}

.sidebar.active .menu>ul>li>a:hover .text {
    left: 60px;
    opacity: 1;
    visibility: visible;
}

.sidebar.active .menu .sub-menu {
    position: absolute;
    text-align: center;
    top: 0;
    left: 68px;
    padding: 10px;
    margin: 0;
    border: none;
    border-radius: 0 10px 10px 0;
    background-color: #000;
    box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.sidebar.active .menu .sub-menu::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 12px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background-color: #000;
    transform: rotate(45deg);
    z-index: -1;
}

/*==================== MAIN CONTENT ====================*/

.container {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.main-content {
    margin-left: 92px;
    margin-right: 500px;
    padding: 0 20px;
    flex: 1;
    transition: all 0.3s ease;
}

.main-content.wide{
    margin-right:92px;
}

.main-content.room-task-panel-open {
    margin-right: 380px;
}

.main-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 1rem;
}

.main-info .left-side a{
    color:#6FC3FF;
}

.main-info .left-side a:hover{
    color:#165684;
}

.main-info .notification {
    position: relative;
}

.main-info .notification div {
    position: absolute;
    right: -0.3rem;
    top: -0.3rem;
    background: #429542;
    color: var(--white-color);
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
}

/*==================== WARNING MESSAGE ====================*/

.warning-message{
    background: #FFFAFA;
    border: solid 3px #FF6363;
    border-radius: 10px;
    padding:10px;
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.warning-message-details h3{
    text-transform: uppercase;
    font-size: var(--xl-size);
    line-height: 40px;
    color: #FF6363;
}

.warning-message-details span{
    font-style: italic;
    color: #FF6363;
}

.warning-message i{
    font-size: var(--xxl-size);
    color: #FF6363;
    padding:0 20px;
}

.warning-message p{
    color: #18181A;
    font-size: 14px;
}

#message_info{
    background: red;
    color: var(--white-color);
    font-weight: bold;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom:15px;
}


.left-side {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.left-side h2 {
    line-height: 44px;
    font-size: var(--xxl-size);
}

.left-side .guard-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.right-side .user-inputs {
    text-decoration: none;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom:10px;
    justify-content: center;
}

.right-content .right-side i {
    font-size: var(--xl-size);
}

.rooms-container {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.rooms-container a {
    text-decoration: none;
}

.my-notes-btn{
    display: flex;
    justify-content: right;
    margin-top:20px;
}

.room {
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background-color: var(--white-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.room:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.rooms-container .room:last-child {
    justify-content: space-between;
}

.room-name,
.room-info,
.room-tasks {
    flex: 1;
    justify-content: space-between;
}

.room-name {
    text-align: center;
}

.room-info ul li {
    list-style: none;
}

.room.inactive {
    box-shadow: none;
    padding: 2.7rem 1rem;
}

.room.inactive .room-name i,
.room.inactive .room-name h3,
.room.inactive .room-name p,
.room.inactive .room-name span {
    color: var(--low-gray-color);
}

.room.inactive .room-info,
.room.inactive .room-tasks {
    display: none;
}

.room-name i {
    font-size: var(--xxl-size);
    color: var(--blue-color);
}

.room-name h3 {
    font-size: var(--xl-size);
    color: var(--dark-blue-color);
    font-weight: 800;
    line-height: 40px;
}

.room-name p {
    font-size: var(--small-size);
    color: var(--mid-gray-color);
    font-weight: 400;
    line-height: 26px;
}

.room-name span {
    font-size: var(--xs-size);
}

.room-info ul {
    margin: 0 auto;
    border-left: 2px solid var(--gray-color);
    border-right: 2px solid var(--gray-color);
}

.room-info li {
    display: flex;
    gap: 1rem;
    padding: 5px 20px;
}

.room-info i {
    display: flex;
    align-items: center;
    font-size: var(--xxl-size);
    color: var(--blue-color);
}

.room-info i::before {
    min-width: 30px;
    text-align: center;
}

.room-info span {
    display: flex;
    align-items: center;
}

.room-tasks {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.room-tasks p {
    margin-top: 10px;
}


/*==================== PIE CHART ====================*/

@property --p {
    syntax: '<number>';
    inherits: true;
    initial-value: 1;
}

.pie {
    --p: 20;
    --b: 12px;
    --c: darkred;
    --w: 120px;

    width: var(--w);
    aspect-ratio: 1;
    position: relative;
    display: inline-grid;
    margin: 5px;
    place-content: center;
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
}

.pie:before,
.pie:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.pie:before {
    inset: 0;
    background:
        radial-gradient(farthest-side, var(--c) 98%, #0000) top/var(--b) var(--b) no-repeat,
        conic-gradient(var(--c) calc(var(--p)*1%), #0000 0);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
    mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
}

.pie:after {
    inset: calc(50% - var(--b)/2);
    background: var(--c);
    transform: rotate(calc(var(--p)*3.6deg)) translateY(calc(50% - var(--w)/2));
}

.animate {
    animation: p 1s .5s both;
}

@keyframes p {
    from {
        --p: 0
    }
}

/*==================== CARD DESIGN ====================*/

.card-design{
    background: var(--white-color);
    border-radius:10px;
    padding:14px;
}

.card-design ul{
    list-style: none;
}

.card-nav, .card-filter ul, .card-list , .card-list ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-list-columns img{
    max-width:48px;
    display: flex;
}

.card-list-columns ul{
    border: 2px solid #D5DFE4;
    border-radius:20px;
    padding:4px 8px;
    width:100%;
    margin-left:10px;
    display: flex;
    align-items: center;
    gap:14px;
}

.card-list-columns .card-list-row{
    display: flex;
    justify-content: space-between;
    margin:10px 0;
}

.card-list-columns ul li:last-child{
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.card-list-columns ul li:first-child a{
    text-decoration: none;
    text-transform: uppercase;
    font-weight:bold;
    color:#6FC3FF;
}

.card-list-columns ul li:first-child a:hover{
    color:#0D5A92;
}

.card-list-columns ul li:last-child a{
    color: var(--low-gray-color);
    margin:4px;
}

.card-list-columns ul li:last-child a:hover{
    color: #98A1A6;
    margin:4px;
}

.select-filter{
    background-color: #6FC3FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding:4px;
    width:max-content;
}

.select-filter i{
    color:var(--white-color);
    padding:4px;
    margin: 0 8px;
}

select{
    border: none;
    padding: 4px;
    border-radius: 10px;
}

.filter-nav{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}


/*==================== RIGHT CONTENT ====================*/
.routine{
    display: flex;
    gap:1rem;
    align-items: center;
    justify-content: center;
}

.right-content .tasks-panel i, .right-content .routine i{
    font-size:32px;
}

.right-content .tasks-panel span{
    text-align: center;
}

.right-content .tasks-panel {
    padding:0 10px;
    text-align: left;
    font-size: 20px;
}

.right-content .tasks-panel p{
    margin:0;
}

.right-content.close .routine h3, 
.right-content.close .routine-month, 
.right-content.close .routine-calendar, 
.right-content.close .room-routine-tasks,
.right-content.close .tasks-panel p,
.right-content.close .tasks-panel h3,
.right-content.close .user-tasks-panel,
.right-content.close .tasks-date,
.right-content.close .tasks-hello-user,
.right-content.close .user-inputs
{
    display: none;
    opacity:0;
}

.right-content.close .tasks-panel i{
    opacity:1;
    display: flex;
    justify-content: center;
}

.right-content .tasks-panel i{
    display: none;
    opacity:0;
}

.tasks-date{
    text-align:center;
    font-size:15px;
}

.tasks-name{
    font-size:20px;
    font-weight:bold;
    line-height:20px;
}

.tasks-hello-user{
    display:flex;
    gap:20px;
    align-items: center;
    padding:20px 0;
    margin:0 20px;
    border-bottom: 2px solid #D5DFE4;
}

.tasks-hello-user .avatar-pic img{
    width:80px;
}

.user-tasks-info{
    border-left: 4px solid;
    padding-left: 10px;
}

.user-tasks.personal-tasks, .user-tasks-info.personal-tasks-info{
    border-color:#6FC3FF;
    display: flex;
    justify-content: space-between;
}

.user-tasks.assigned-tasks, .user-tasks-info.assigned-tasks-info{
    border-color:#FF9F40;
}


.user-tasks-info p:first-child{
    line-height:18px;
}

.user-tasks-group{
    font-size:14px;
    line-height:14px;
    font-weight:bold;
}

.notification{
    position:relative;
}

.notification-number{
    position: absolute;
    top:-6px;
    right:-10px;
    background-color:#6FC3FF;
    border-radius:20px;
    font-size:12px;
    color:white;
    font-weight:bold;
    text-align: center;
    line-height:18px;
    width:18px;
    height:18px;
}

.right-content {
    width: 500px;
    height: 100vh;
    background: var(--white-color);
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.3s ease;
    padding-top:20px;
}

.right-content .menu-btn-right {
    position: absolute;
    left: -14px;
    top: 2%;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #757575;
    border: 2px solid #f6f6f6;
}

.right-content .menu-btn-right :hover i {
    color: #000;
}

.right-content .menu-btn-right i {
    transition: all 0.3s;
}

.right-content.close{
    width: 92px;
}

.right-content.close {
    margin-left: 200px;
}

.right-content.close .menu-btn-right i {
    transform: rotate(180deg);
}

.right-content.room-task-panel {
    width: 370px;
}

.task

.right-content-info {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
}

.right-content-info h3 {
    font-size: var(--xl-size);
}

.right-content-info p {
    margin-top: 10px;
}

.right-content i {
    font-size: var(--small-size);
}

.user-inputs-btn {
    color: var(--mid-gray-color);
    transition: all 0.3s;
}

.user-inputs-btn:hover {
    color: #6FC3FF;
}



.user-notes {
    display: flex;
    flex-direction: column;
    padding: 5%;
}

.user-notes form {
    margin: 20px auto;
    text-align: center;
    width: 100%;

}

.user-notes textarea {
    width: 95%;
    min-height: 40vh;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid var(--mid-gray-color);
}

.user-notes textarea::placeholder {
    color: var(--mid-gray-color);
}



/*==================== TEST ROMAIN ====================*/
.table {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*==================== USER TASKS ====================*/

.user-tasks-panel {
    padding: 10px 30px;
}

.user-tasks-panel h4 {
    text-align: left;
}

.user-tasks-panel form {
    text-align: center;
}

.user-tasks-panel h4,
.user-tasks-panel form {
    margin: 20px 0;
}

.user-tasks-panel button {
    border-radius: 10px;
    height: 30px;
    padding: 0 20px;
    cursor: pointer;
    background-color: rgb(255, 178, 44);
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.user-tasks-panel button:hover {
    background-color: rgb(231, 108, 26);
}

.user-tasks-panel form input {
    border-radius: 10px;
    height: 30px;
    padding: 0 5px;
}

.user-tasks {
    border:2px solid #D5DFE4;
    padding: 10px;
    border-radius: 10px;
    margin: 6px 0;
    display: flex;
    justify-content: space-between;
}

.user-tasks.assigned {
    background: hsl(38, 100%, 75%);
}

.tasks-text {
    display: flex;
    justify-content: flex-start;
    font-size: var(--xs-size);
    align-items: center;
    gap: 1rem;
}

.tasks-icons {
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
    align-items: center;
}


.status-progress {
    color: var(--mid-gray-color);
}

.status-done {
    color: forestgreen;
}

.status-delete {
    color: var(--low-gray-color);
}

.status-delete:hover {
    color: #98A1A6;
}

.user-tasks a {
    text-decoration: none;
    font-size: var(--small-size);
    color: var(--blue-color);
    transition: all 0.3s;
    display: flex;
}

.user-tasks a:hover {
    color: var(--dark-blue-color);
}

/*==================== PROJECT VIEW ====================*/

.left-side h1 ul{
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
}


/*==================== TOGGLE NAV ROOM ====================*/
.nav-room {
    margin-top: 20px;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.nav-room.right {
    justify-content: right;
}

.nav-room-tabs {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-room-tabs li a {
    padding: 10px 20px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    display: inline-block;
}

.nav-room-tabs li a.active {
    border-bottom: solid 6px #6FC3FF;
    font-weight: bold;
}

.toggleContainer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    border: 3px solid var(--white-color);
    border-radius: 20px;
    background: var(--white-color);
    font-weight: bold;
    color: var(--white-color);
    cursor: pointer;
}

.toggleContainer::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0%;
    border-radius: 20px;
    background: #6FC3FF;
    transition: all 0.3s;
}

.toggleCheckbox:checked+.toggleContainer::before {
    left: 50%;
}

.toggleContainer div {
    padding: 5px 20px;
    text-align: center;
    z-index: 1;
}

.toggleCheckbox {
    display: none;
}

.toggleCheckbox:checked+.toggleContainer div:first-child {
    color: #6FC3FF;
    transition: color 0.3s;
}

.toggleCheckbox:checked+.toggleContainer div:last-child {
    color: var(--white-color);
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:first-child {
    color: var(--white-color);
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:last-child {
    color: #6FC3FF;
    transition: color 0.3s;
}

/*==================== ROOM REPORTS BTN ====================*/

.room-reports {
    display: flex;
}

.room-reports ul {
    display: flex;
    gap: 0.5rem;
}

.room-reports-btn {
    background-color: var(--low-gray-color);
    display: flex;
    height: 36px;
    width: 36px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.room-reports-btn-add {
    background-color: var(--low-gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.room-reports-btn i {
    color: var(--mid-gray-color);
    font-size: var(--l-size);
    transition: all 0.3s ease;
}

.room-reports-btn:hover {
    background-color: #2E7FBA;
}

.room-reports-btn:hover i {
    color: #93CAFF;
}

.room-reports-btn.active {
    background-color: #6FC3FF;
}

.room-reports-btn.active-prob {
    background-color: #FF9F40;
}

.room-reports-btn.active-alarm {
    background-color: #FF6363;
}


.room-reports-btn.active i, .room-reports-btn.active-prob i, .room-reports-btn.active-alarm i {
    color: var(--white-color);
}

/*==================== NEW TANK CARDS ====================*/

body{
    display: flex;
}

/* Tank card container */
.tank-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  margin: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Horizontal layout: sidebar + main */
.tank-content {
  display: flex;
  gap: 40px;
}

.small-card{
    max-width:90px;
}

.medium-card{
    max-width:110px;
}

.food-section{
    max-width:400px;
}

/* Left column: Tank ID + info */
.tank-sidebar {
  min-width: 100px;
}

.tank-id{
  color: #4db3f4;
  font-weight: 700;
  font-size: 20px;
}

.tank-id a{
  color: #4db3f4;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

.tank-id a:hover{
  color: #327BAF;
}

.tank-info {
  color: #999;
  font-size: 14px;
  margin-top: 5px;
}

/* Right column: Description + stats */
.tank-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Top bar: Description + project name */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.description-label {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

.org-name {
  font-weight: 500;
  color: #ccc;
  font-size: 14px;
}

.tank-main .org-name a{
    text-decoration:none;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
}

.tank-main .org-name a:hover{
    color:#98A1A6;
}

/* Stats layout: Fish + Food sections */
.tank-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Each section */
.section {
  flex: 1;
  min-width: 250px;
}

.section h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: solid 2px #E3E3E3;
}

/* Stats boxes inside each section */
.stat-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Individual stat box */
.stat {
  background: #f2f2f2;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  flex:1 1 0;
  box-sizing:border-box;
}

.stat span {
  display: block;
  color: #555;
  font-size: 12px;
  margin-bottom: 4px;
}

.stat strong {
  font-size: 16px;
  color: #000;
}

.stat small {
  font-size: 10px;
  color: #666;
}

/* Red box for density */
.stat.red {
  background: #ff6363;
}

.stat.red span, .stat.red strong, .stat.red small{
  color: white;
}

@media (max-width: 768px) {
  .stat {
    width: 100%; /* stack boxes on mobile */
  }
}

/* Info button style */
.info-toggle-btn {
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 13px;
  background-color: #4db3f4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.info-toggle-btn.orange{
    background-color: #FF9F40;
}

.info-toggle-btn.orange:hover{
    background-color: #da6d24;
}

/* Expandable section (initially hidden) */
/* Tank extra info */
.tank-extra-info {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: none;
  animation: fadeIn 0.3s ease;
}

/* Section title */
.tank-extra-info h4 {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

/* Grid-style layout */
.info-grid {
  display: grid;
  grid-template-columns: 140px 1fr 300px; /* Date | Comment | Operator */
  gap: 10px 15px;
  font-size: 13px;
  color: #444;
}

/* Headers */
.info-header {
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}

/* Cell */
.info-cell {
  padding: 4px 0;
}

/* Optional: make long comments wrap nicely */
.info-cell:nth-child(3n+2) {
  white-space: normal;
  word-break: break-word;
}

/* Optional: responsive stacking on mobile */
@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-header {
    background: #f9f9f9;
    padding: 6px;
  }

  .info-cell {
    padding: 6px;
    border-bottom: 1px solid #eee;
  }
}

/* Fade in animation (optional) */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/*==================== OLD TANK CARDS ====================*/

.fish-info i {
    cursor: pointer;
}

.fish-info ul {
    list-style: none;
}

/*.fish-info ul span.text{
    display: none;
}*/

/*.fish-info ul li:hover span.text{
    display: initial;
}*/

.tank .tank-container .fish-info i:hover span.text {
    color: red;
}

.tank-container .tank {
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--white-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 100%;
}

.tank-container .tank:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.tank-container {
    width: 100%;
    /*max-width: 640px;*/
    /*display: flex;*/
}

.tank-container .tank:last-child {
    justify-content: space-between;
}

.tank-container .tank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.tank-info ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.tank-info {
    margin-bottom: 20px;
    width: 100%;
}

.tank-info ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.tank-info ul li i {
    font-size: var(--xxl-size);
}

.tank-info ul li i.warning,
.tank-info ul li .tank-warning-message {
    color: red;
}

.tank-info ul li i.warning {
    cursor: pointer;
}

.tank-info ul li i.info-ico {
    color: var(--dark-blue-color);
}

.tank-info ul li .text-info {
    display: none;
}

.tank-info ul li i.info-ico:hover+.text-info {
    display: block;
}

.tank-info ul li.project-name {
    display: flex;
    justify-content: flex-end;
}

.tank-info ul li.project-name a,
.tank-info div span {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--mid-gray-color);
    text-decoration: none;
}

.tank-info div span {
    font-size: var(--xs-size);
}

.tank-info ul li.project-name a {
    font-size: var(--small-size);
}

.tank-info ul li.project-name a:hover {
    color: var(--black-color);
}

.tank-info h4 {
    font-size: var(--xl-size);
    color: var(--dark-blue-color);
    font-weight: 800;
    line-height: 40px;
}

.fish-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.fish-info ul:first-child {
    margin-left: 0;
}

.fish-info ul {
    margin: 0 20px;
}

.fish-info ul:last-child {
    margin-right: 0;
}

.fish-info i {
    font-size: var(--xl-size);
    display: flex;
    align-items: center;
}

.fish-info i::before {
    min-width: 40px;
    text-align: center;
}

.fish-info ul li:first-child {
    font-size: var(--normal-size);
    text-transform: uppercase;
    line-height: 30px;
    border-bottom: 1px solid var(--mid-gray-color);
    font-weight: 600;
    color: var(--mid-gray-color);
    padding: 0;
    border-radius: 0;
}

.fish-info ul li {
    font-size: var(--small-size);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px;
    margin: 10px 0;
}

.fish-info ul li:last-child {
    margin-bottom: 0;
}

.fish-info ul .food-size-green,
.fish-info ul .food-size-red,
.fish-info ul .food-size-yellow,
.fish-info ul .food-size-blue,
.fish-info ul .food-size-orange,
.fish-info ul .food-size-pink,
.fish-info ul .food-size-black {
    font-size: var(--l-size);
}

.fish-info ul .food-size-green {
    color: green;
}

.fish-info ul .food-size-red {
    color: red;
}

.fish-info ul .food-size-yellow {
    color: yellow;
}

.fish-info ul .food-size-blue {
    color: var(--blue-color);
}

.fish-info ul .food-size-orange {
    color: orange;
}

.fish-info ul .food-size-pink {
    color: pink;
}

.fish-info ul .food-size-black {
    color: black;
}

.tank .notification-alarm {
    position: relative;
}

.tank .notification-alarm div {
    font-weight: 600;
    position: absolute;
    right: -0.3rem;
    top: 0;
    background: white;
    border: 1px solid red;
    border-radius: 50%;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: red;
}


.popupContainer {
    position: relative;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#popupDialog {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 2px solid red;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    width: 80%;
}

/* BUBBLE INFOS */

.tooltip {
    position: relative;
    list-style: none;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    white-space: nowrap;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip .tooltiptext-block {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    min-width: 600px;
    font-weight: 500;
    font-size: var(--xs-size);
    text-align: left;
    line-height: 20px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}


.tooltip:hover .tooltiptext-block {
    visibility: visible;
}

.left-tooltip {
    top: -5px;
    right: 105%;
}

.right-tooltip {
    top: -5px;
    left: 105%;
}

.top-tooltip {
    /*width: 120px;*/
    bottom: 100%;
    /*left: 50%;*/
    /*margin-left: -60px;*/
    /* Use half of the width (120/2 = 60), to center the tooltip */
}

.bottom-tooltip {
    width: 120px;
    top: 100%;
    left: 50%;
    margin-left: -60px;
    /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip .tooltiptext.top-tooltip::after {
    content: " ";
    position: absolute;
    top: 108%;
    /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip .tooltiptext.bottom-tooltip::after {
    content: " ";
    position: absolute;
    bottom: 108%;
    /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip .tooltiptext.right-tooltip::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 108%;
    /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.tooltip .tooltiptext.left-tooltip::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 108%;
    /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%;
    /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.tooltip .tooltiptext2 {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    white-space: nowrap;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext2 {
    visibility: visible;
}

.tooltip .tooltiptext2 {
    top: 120%;
    /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip .tooltiptext2::after {
    content: " ";
    position: absolute;
    bottom: 100%;
    /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.alert-warning {
    color: red;
    animation: blink 2s steps(5, start) infinite;
    -webkit-animation: blink 1s steps(5, start) infinite;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink {
    to {
        visibility: hidden;
    }
}


/*==================== MY PROFIL ====================*/

.lumos-container .my-profil{
    display: flex;
    gap:14px;
    margin-bottom:20px;
}

.lumos-container .my-profil-cards{
    display: flex;
    flex:1;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.lumos-container .my-profil-cards .info{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    font-weight:bold;
}

.lumos-container .my-profil-cards .details{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.lumos-container .my-profil-cards .details ul{
    list-style:none;
}

.lumos-container .my-profil-cards .details ul li:first-child{
    font-weight:bold;
}

.lumos-container .my-profil-cards form{
    display: contents;
}

.lumos-container .my-profil-cards form input{
    margin-bottom: 10px;
    margin-top: 5px;
    border-radius:10px;
    border: 2px solid #D5DFE4;
    background-color:#EEEEEE;
}


.lumos-container .my-profil-cards form input[type="submit"]{
    border:none;
    background-color: #6FC3FF;
    color:white;
    font-weight:bold;
    padding:4px;
    border-radius:20px;
}

.avatar-parameters{
    display: flex;
    flex-direction: column;
}

.avatar-pic{
text-align: center;
display: flex;
}

.avatar-pic img{
width:180px;
}

.avatar-info{
display: flex;
flex-direction: column;
gap:10px;
}

.avatar-info span{
    text-align: center;
}

/*==================== ROOM TASKS PANEL ====================*/

.routine-calendar .routine-day-number.green,
.routine-calendar .routine-date.activated .routine-day-number.green {
    background-color: green;
    color: greenyellow;
    font-weight: 600;
    border-color: greenyellow;
    font-size:14px;
}

.routine-calendar .routine-day-number.red,
.routine-calendar .routine-date.activated .routine-day-number.red {
    background-color:#ff6363;
    color: white;
    font-weight: 600;
}

.routine-calendar {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    justify-content: space-between;
    padding: 0 10px;
    cursor: pointer;
}

.routine-month {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
}

.routine-month span {
    font-size: var(--normal-size);
    font-weight: 600;
}

.routine-month i {
    cursor: pointer;
}

.routine-calendar .routine-date {
    padding: 6px 2px;
    border-radius: 40px;
    min-width: 42px;
    font-size: 14px;
    text-transform: uppercase;
}

.routine-calendar a:hover .routine-date{
    color:#3B88C0;
}

.routine-calendar a{
    color:#6FC3FF;
}


.routine-calendar .routine-date.activated {
    background: var(--blue-color);
}

.routine-calendar .routine-date.activated .routine-day-number {
    border: 1px solid var(--white-color);

}

.routine-calendar .routine-date.activated .routine-day {
    color: var(--white-color);
    font-weight: 600;
}

.routine-calendar a{
    text-decoration: none;
}

.routine-calendar .routine-day {
    display: block;
    margin: 6px 0;
}

.routine-calendar .routine-day-number {
    background: var(--white-color);
    padding: 4px;
    border-radius: 20px;
    width: 30px;
    display: inline-block;
    font-size: var(--xs-size);
}

.progress-line-task {
    margin: 20px 0;
    height: 12px;
    width: 100%;
    position: relative;
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05), 0px 1px rgba(255, 255, 255, 255, 0.8);
    transform: scaleX(0);
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
    transform-origin: left;
}

@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.progress-line-task span {
    height: 100%;
    background: #429542;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
    transform-origin: left;
}

.progress-line-task span::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-bottom-width: 0;
    border-right-width: 0;
    border-top-color: #000;
    right: 0;
    top: -8px;
}

.progress-line-task span::after {
    position: absolute;
    right: 0;
    top: -28px;
    background: #000;
    color: #fff;
    padding: 1px 8px;
    border-radius: 3px;
}

.progress-line-task.html span::after {
    content: "80%"
}

.room-routine-tasks-list {
    margin-top: 10px;
    padding: 0 10px;
}

.room-routine-tasks-list a{
    text-decoration: none;
    color:#000000;
}

.room-routine-tasks-list li {
    background: #eeeeee;
    padding: 6px 10px 6px 0;
    border-radius: 10px;
    margin: 6px 0;
    display: flex;
    align-items: center;
}

.room-routine-tasks-list li span {
    font-size: 13px;
}

/*==================== NOTEBOOK ====================*/
.notebook {
    display: flex;
}

.notebook a {
    text-decoration: none;
}

.notebook-btn {
    display: flex;
    justify-content: center;
}

.notebook-btn a,
.notebook-btn>button {
    padding: 5px 10px;
    width: 100%;
    text-align: center;
    background-color: #12b19c;
    color: white;
    font-weight: 600;
    border: none;
    font-size: var(--small-size);
    outline: none;
    cursor: pointer;
}

.notebook-btn a:hover {
    background-color: #118086;
}

.notebook .ql-container.ql-snow {
    border-bottom: none;
}

.sections,
.pages {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 86vh;
    gap: 1rem;
    width: 40%;
    overflow: scroll;
}

.sections {
    border-right: 2px solid #d9d9d9;
}

.pages {
    border-right: 2px solid #d9d9d9;
}

.sections ul,
.pages ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.sections ul li {
    border-bottom: 2px solid #c9c9c9;
}


.pages ul li {
    border-bottom: 2px solid #d9d9d9;
}

.sections ul li i {
    font-size: var(--small-size);
}

.sections ul li a,
.pages ul li a {
    color: black;
}

.sections ul li a i,
.pages ul li a i {
    color: rgb(36, 127, 202);
}

.sections ul li a:hover i,
.pages ul li a:hover i {
    color: rgb(13, 84, 143);
}

.sections ul li:hover {
    background: #6fb0de;
}

.notebook .sections li.active {
    background: #61d2ee;
}

.notebook .pages li.active {
    background: #a6e6f6;
}

.sections ul div,
.pages ul div {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.sections ul div:first-child,
.pages ul div:first-child {
    justify-content: flex-start;
}

.notebook .sections:last-child,
.notebook .pages:last-child {
    justify-content: flex-end;
}

.notebook .sections li,
.notebook .pages li {
    background: #e2e2e2;
    padding: 5px 10px;
}

.notebook .sections li,
.sections {
    background: #e2e2e2;
}

.notebook .pages li,
.pages {
    background: #f0f0f0;
}

.note-file {
    width: 100%;
    max-height: 90vh;
}

.note-file form {
    height: 77vh;
}

.notebook-last-update {
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    font-size: var(--xs-size);
    font-style: italic;
}

/*==================== LOGBOOK CARD ====================*/

.logbook-card{
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    margin: 8px 0;
}

.logbook-card .card-title, .logbook-card .card-content{
    display: flex;
}

.logbook-card .card-title{
    justify-content: space-between;
    margin-bottom:10px;
}

.logbook-card .card-title .color-prob h3, .logbook-card .card-title .color-prob span{
    color:#FF9F40;
}

.logbook-card .card-title .color-alarm h3, .logbook-card .card-title .color-alarm span{
    color:#FF6363;
}

.logbook-card .card-title h3{
    text-transform: uppercase;
    color:#6FC3FF;
}

.logbook-card .card-title span{
    font-size:16px;
    font-weight: 600;
    color:#6FC3FF;
}

.logbook-card .card-title p{
    font-size:14px;
    font-style: italic;
    color:#98A1A6;
}

.logbook-card .card-content{
    gap:30px;
}

.logbook-card .card-main-info{
    width:100%;
}

.logbook-card .card-actions{
    display: flex;
    gap: 20px;
}

.logbook-card .card-actions a i{
    color:#98A1A6;
    font-size:24px;
}

.logbook-card .card-actions a:hover i{
    color:#6FC3FF
}

.prob-reply-card{
    display: flex;
    gap:30px;
    margin:5px 0;
    padding:5px 0 0 30px;
    align-items: center;
    border-top:solid 1px #98A1A6;
}

.prob-reply-card-info{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prob-reply-card .prob-reply-card-info .card-title{
    margin:0;
}

.prob-reply-card .prob-reply-card-info .card-main-info p{
    font-size:14px;
}

.prob-reply-card .prob-reply-card-info .card-actions a i{
    font-size:16px;
}

/*==================== USER MANAGEMENT ====================*/

.lumos-container {
    display: flex;
    flex-direction: column;
    /*padding: 20px 0;*/
}

.lumos-container-flex {
    display: flex;
    justify-content: space-between;
}

.lumos-container .header-user-list {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.lumos-container .header-user-list button {
    padding: 5px 14px;
    outline: none;
    border: none;
    border-radius: 48px;
    background-color: #20dbc2;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
}

.lumos-container .header-user-list button:hover {
    background-color: #14a793;
}

.header-user-list ul{
    display:flex;
    gap:1rem;
}

.header-user-list li{
    list-style: none;
}

.lumos-container .columns .carddesign form.project-admin-info{
    text-align: center;
    padding:0;
    margin-bottom: 0;
    display: inline-block;
}

.lumos-container form.project-admin-info input[type="text"] {
    background-color: #f0f0f0;
    border:none;
    padding: 5px 10px;
    border-radius: 6px;
}

.lumos-container form.project-admin-info select {
    background-color: #f0f0f0;
    border:none;
    padding: 5px 10px;
    border-radius: 6px;
}

.main-content .popup-content form {
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-content .popup-content form h2 {
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 10px;
}

.main-content .popup-content form .input-field {
    min-width: 400px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 13% 87%;
    padding: 0 0.4rem;
    position: relative;
    text-align: left;
    align-items:center;
}

.main-content .popup-content form .input-field.input-field-columns{
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items:flex-start;
}

.main-content .popup-content form .input-field-textarea {
    min-width: 400px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 100%;
    padding: 0 0.4rem;
    position: relative;
    text-align: left;
}

.main-content .popup-content form .input-field .input-icon{
    text-align: center;
}

.main-content .popup-content form .input-field.checklist {
    grid-template-columns: 14% 14% 14% 14% 14% 14% 14%;
}

.main-content .popup-content form .input-field.comment-input {
    min-width: 400px;
    width: 100%;
    height: 150px;
    background-color: #f0f0f0;
    margin: 10px 0;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 13% 87%;
    padding: 0 0.4rem;
    position: relative;
}

.main-content .popup-content form .input-field i {
    text-align: center;
    line-height: 45px;
    color: #acacac;
    font-size: 1.3rem;
}

.main-content .popup-content form .input-field.comment-input i {
    text-align: center;
    line-height: 150px;
    color: #acacac;
    font-size: 1.3rem;
}

.main-content .popup-content form .input-field input,
.main-content .popup-content form .input-field select {
    background: none;
    outline: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    width:98%;
}

.main-content .popup-content form .input-field.comment-input textarea {
    background: none;
    outline: none;
    border: 0;
    padding: 10px 10px 10px 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
}

.main-content .popup-content form .input-field select .placeholder {
    color: #999;
}

.main-content .popup-content form .input-field input:placeholder-shown {
    color: #aaa;
    font-weight: 500;
}

.main-content .popup-content form .input-field textarea {
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 10px;
    max-width: 100%;
    line-height: 1.5;
    border-radius: 14px;
    margin: 5px 0;
    border: 1px solid #ccc;
}

.main-content .popup-content form .input-field ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    padding: 20px 0;
    font-size: var(--xs-size);
}

.main-content .popup-content form .input-field.input-field-columns ul{
    padding:4px 8px;
}

.main-content .popup-content form .input-field li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-content .popup-content form input#your-id {
    width: 150px;
    height: 49px;
    outline: none;
    border: none;
    border-radius: 48px;
    background-color: #20dbc2;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.5s;
}

.main-content .popup-content form input#your-id:hover {
    background-color: #00bfa6;
}

.user-list {
    border-spacing: 0 6px;
    border-collapse: separate;
    width:100%;
}

.user-list h1 {
    margin-top: 20px;
}

.user-list td:first-child {
    border-radius: 10px 0 0 10px;
    padding-left: 10px;
    width: 20px;
    white-space: nowrap;
    text-align:left;
}

.user-list td:last-child {
    border-radius: 0 10px 10px 0;
    padding-right: 5px;
}

.user-infos {
    background: var(--white-color);
}

.user-infos td {
    text-align: center;
    font-size: var(--xs-size);
}

.user-infos td:last-child{
    text-align: right;
    width: 100px;
}

.user-infos td.txt-left {
    text-align: left;
    padding: 20px;
}

.user-list td a {
    text-decoration: none;
}

.user-list td i {
    font-size: var(--l-size);
    padding: 5px;
    vertical-align: middle;
}

.user-list i.actions {
    color: #2E7FBA;
}

.user-list i.actions:hover {
    color: #165684;
}

button:hover {
    background-color: #265df2;
}


.modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.lumos-container.active .show-modal {
    display: none;
}

.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.lumos-container.active .overlay {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
}

.lumos-container.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-box i {
    font-size: 40px;
    color: #4070f4;
}

.modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
}

.modal-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
}

.modal-box .buttons {
    margin-top: 25px;
}

.modal-box button {
    font-size: 14px;
    padding: 6px 12px;
    margin: 0 10px;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding:6px 0;
    outline: none;
    border: none;
    border-radius: 48px;
    background-color: #20dbc2;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #12b19c;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 32px;
}

.button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.button i {
    margin-right: 5px;
}

.button:hover {
    background-color: #0056b3;
}

#verification div {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

#verification a {
    width: 100px;
    padding: 5px;
    outline: none;
    border: none;
    border-radius: 48px;
    background-color: #20dbc2;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
    text-decoration: none;
}

#verification a:hover {
    background-color: #12b19c;
}

/*==================== ADMIN DASHBOARD ====================*/

.admin-dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.admin-dashboard li {
    flex: 1;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 10px;
    list-style: none;
    cursor: pointer;
}

.admin-dashboard li a {
    display: inline-block;
    padding: 20px;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.admin-dashboard li a i {
    font-size: 48px;
    padding: 10px;
    color: var(--blue-color);
}

.admin-dashboard li a h2 {
    font-size: var(--l-size);
    color: var(--blue-color);
}

.admin-dashboard li:hover a i,
.admin-dashboard li:hover a h2 {
    color: var(--dark-blue-color-color);
}

/*==================== ADMIN PROJECT ====================*/

.filter-menu.columns {
    display: flex;
    flex-direction: column;
}

.filter-menu.inline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-menu.inline li {
    position: relative;
}

.filter-menu.columns li.sub-menu-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.filter-menu.inline .sub-menu-inline2 {
    position: absolute;
    top: 40px;
    left: -150%;
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    font-size: var(--xs-size);
    white-space: nowrap;
}


.filter-menu {
    list-style: none;
    gap: 1rem;
    padding: 10px;
}

.filter-menu ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.filter-menu .filter-menu-btn {
    border-radius: 48px;
    background-color: #b7b7b7;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
    color: var(--white-color);
    text-decoration: none;
    padding: 5px 14px;
}

.filter-menu .filter-menu-btn.active {
    background-color: #20dbc2;
}

.filter-menu .filter-menu-btn:hover {
    background-color: #676767;
}

.header-user-list .filter-menu-btn{
    color: #98A1A6;
    text-decoration: none;
}

.header-user-list .filter-menu-btn.active {
    font-weight: bold;
    color:#000000;
}

.header-user-list .filter-menu-btn:hover {
    color: #93CAFF;
}

.twocolumns-popup {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.add-btn {
    padding: 5px 14px;
    outline: none;
    border: none;
    border-radius: 48px;
    background-color: #20dbc2;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.add-btn:hover {
    background-color: #14a793;
}

.user-infos .lssalmon-ico {
    color: #00bfa6;
}

.user-infos .lsmodelfish-ico {
    color: #265df2;
}


.submit-btn{
margin-top:20px;
}

/*==================== CARD DESIGN ====================*/

.cardscontainer {
    display: grid;
    grid-template-columns: 30% 34% 34%;
    gap: 1rem;
    justify-content: center;
}

.carddesign {
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    flex-direction: column;
}

.carddesign.double{
    width:49%;
}

.carddesign .title {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
}

.carddesign .columns{
    display:flex;
    justify-content: space-between;
    gap:30px;
}

.columns{
        display:flex;
    justify-content: space-between;
    gap:30px;
}

.carddesign .columns ul{
    list-style:none;
    width:100%
}

.carddesign .columns ul i{
    font-size:24px;
}

.carddesign .columns ul .bold-info{
    font-size:20px;
    font-weight: bold;
}

.carddesign .columns ul .regular-info{
    font-size:14px;
}

.carddesign.fish-card .columns, .carddesign.plan-card .columns{
    gap:10px;
}

.project-admin-info ul:first-child{
    margin-bottom:10px;
}

.project-admin-info ul li:first-child{
    font-weight:bold;
    font-size:16px;
}

.project-admin-info ul li:last-child{
    font-size:14px;
}

.fish-card ul, .plan-card ul{
    background-color:#eeeeee;
    border-radius: 10px;
    padding:20px 0;
    text-align: center;
}

.carddesign .columns .reports-file{
    background-color:#6FC3FF;
    text-align:center;
    padding:10px 20px;
    width:auto;
    border-radius: 10px;
    color:#FFFFFF;
    font-weight: bold;
    font-size:16px;
    line-height:24px;
}

.carddesign .columns .reports-file li:first-child{
    color:#CAEBFF;
    font-weight:400;
    font-size:12px;
}

.carddesign .columns .reports-file li:last-child{
    color:#0D5A92;
    font-size:12px;
}

.carddesign .twocolumnscard {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.carddesign .twocolumnscard ul {
    list-style: none;
}

.carddesign .twocolumnscard ul i{
    margin:10px;
    font-size: 24px;
}

.carddesign .multipleColumnsCard ul,
.smallCardBox .multipleColumnsCard {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.carddesign .multipleColumnsCard ul i{
    margin-bottom: 6px;
}

.carddesign .multipleColumnsCard ul li,
.smallCardBox .multipleColumnsCard li a {
    display: flex;
    flex-direction: column;
}

.smallCardBox .multipleColumnsCard li a {
    text-align: center;
}

.smallCardBox .multipleColumnsCard {
    text-align: left;
}

/*==================== MAIN TITLE ====================*/

.main-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main-title ul {
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
}


/*==================== MODIFY/DELETE BOXS ====================*/

.smallCardBox {
    background: var(--white-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    border-radius: 10px;
}

.smallCardBox ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.smallCardBox-threecolumns {
    background: var(--white-color);
    padding: 10px;
    display: flex;
    margin-bottom: 10px;
    border-radius: 10px;
    align-items: center;
}

.smallCardBox-threecolumns i.status-info {
    padding: 20px;
}

.smallCardBox-threecolumns div:first-of-type {
    width: 100%;
}

.smallCardBox-threecolumns ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

/*==================== TIME REPORT ====================*/

.time-report table {
    border-spacing: 0 5px;
    border-collapse: separate;
}

.time-report .filter {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.time-report table tbody tr {
    background: var(--white-color);
}

.time-report table tbody tr td {
    padding: 5px 8px;
}

.time-report table tbody tr td:first-child p {
    font-size: var(--xs-size);
    text-align: center;
    font-weight: 600;
    color: white;
}

.time-report table tbody tr td:first-child {
    border-radius: 10px 0 0 10px;
    padding: 0 10px;
    background-color: var(--blue-color);
}

.time-report table tbody tr td:last-child {
    border-radius: 0 10px 10px 0;
    padding: 0 10px;
}

.time-report table tbody tr td i {
    min-width: 20px;
    color: var(--dark-blue-color);
}

.time-report table tbody tr td.time-report-project {
    border-right: 2px dashed var(--mid-gray-color)
}

.time-report table tbody tr td.time-report-project:last-child {
    border: none;
}

.time-report input[type="submit"] {
    padding: 5px 14px;
    outline: none;
    border: none;
    border-radius: 48px;
    background-color: #20dbc2;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s;
    cursor: pointer;
    text-decoration: none;
}

.time-report input[type="submit"]:hover{
    background-color: #14989f;
}
