﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
    .text-mobile {
        font-size: 16px !important;
    }

    .not-mobile {
        display: none !important;
    }
    .btn-main-tab {
        width: 120px !important;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

.navbar-brand{
    margin-left:50px;
}
.navbar-nav {
    margin-left: 100px !important;
    font-size:25px;
    gap:40px;
}
.navbar-title h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Semi-bold weight */
    font-size:48px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
}
.navbar-icons {
    position: absolute;
    right: 10px; /* Adjust the distance from the right edge */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    z-index: 2;
}

    .navbar-icons a {
        color: white;
        margin-left: 15px;
        width:100px;
        font-size: 20px; /* Adjust size of icons */
    }
    .navbar-icons a img {
        width: 40px;
    }
        .navbar-icons a:hover {
            color: #f8b400; 
        }

.login-icon{
    margin-left:30px;
    margin-right:20px;
}
.footer{
    background-color:black;
    height:100px;
    text-align:center;
}

.scrollable-form {
    max-height: 80vh;
    overflow-y: auto;
}

.img-panel {
    height: 100%;
    object-fit: cover;
    border-radius: 1rem 0 0 1rem;
}

.btn-main-tab {
    width: 150px;
    border: 1px solid grey;
}

    .btn-main-tab:hover {
        background-color: #2b2b36;
        border: 1px solid grey;
        opacity: 0.7;
    }

    .btn-main-tab.active {
        width: 150px;
        border: 1px solid grey;
        background-color: #2b2b36 !important;
        color: #ffffff !important;
    }

.first-tab {
    border-start-start-radius: 20px;
    border-start-end-radius: 0px;
    height: 45px;
    border-end-start-radius: 0px;
    border-end-end-radius: 0px;
    margin-right: 0px;
}

.middle-tab {
    height: 45px;
    border-radius: 0px;
    margin-left: -5px;
}

.last-tab {
    height: 45px;
    margin-left: -5px;
    border-start-start-radius: 0px;
    border-start-end-radius: 20px;
    border-end-start-radius: 0px;
    border-end-end-radius: 0px;
}

.single-tab {
    height: 45px;
    border-start-start-radius: 20px;
    border-start-end-radius: 20px;
    border-end-start-radius: 0px;
    border-end-end-radius: 0px;
}
.card {
    border: 1px solid lightgray;
}

.user-label{
    color:white;
    margin-left:30px;
    margin-right:20px;
    cursor:pointer;
}

th.sortable:after {
    content: none !important;
}


th {
    position: relative;
    cursor: default;
    pointer-events: none;
}

.with-sorting th {
    position: relative;
    pointer-events: auto; /* Enables clicking on header */
    cursor: pointer; /* Shows the hand icon, indicating it's clickable */
}

    .with-sorting th::after {
        content: ''; /* Default bidirectional arrow */
        position: absolute;
        right: 8px;
        opacity: 0.5;
    }

    .with-sorting th.no-sort::after {
        content: none; /* No content for non-sortable columns */
    }

    /* Add ascending sorted state arrow */
    .with-sorting th.sorted-asc::after {
        content: '↑'; /* Arrow pointing up */
        opacity: 1;
    }

    /* Add descending sorted state arrow */
    .with-sorting th.sorted-desc::after {
        content: '↓'; /* Arrow pointing down */
        opacity: 1;
    }

.custom-checkbox {
    height: 25px !important;
    width: 25px !important;
    appearance: none;
    background-color: #eee;
    border: 1px solid #ccc;
    cursor: pointer;
}
    .custom-checkbox:checked {
        background-color: black;
    }

.day-row {
    margin-top: 5px;
    font-weight:bold;
}

.closed-day-checkbox {
    margin-top: 0.5rem;
}

.time-input {
    min-width: 70px;
    max-width:170px;
}

.form-check-input{
    height:30px !important;
    width:30px !important;
}

.weekday-checkboxes {
    display: flex;
    gap: 10px;
    margin: 10px;
}

    .weekday-checkboxes label {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: sans-serif;
    }
    .weekday-checkboxes label input {
        height: 20px !important;
        width: 20px !important;
    }