body {
    background: rgb(212, 212, 212);
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    }

/* NOTIFICATIONS */ 
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 50%; /* Position the container's left edge at 50% of the viewport width */
    transform: translateX(-50%); /* Shift the container left by 50% of its width to center it */
    width: 300px;
    z-index: 1001;
}

.notification {
    position: relative;
    display: flex; /* Use flexbox layout */
    align-items: center; /* Vertically center the items */
    justify-content: center; /* Horizontally center the items */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #419042;
    color: white;
    padding: 15px 30px;
    margin-top: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.notification img{
    display: inline-block;
    height: 20px;
    margin-right: 10px; /* Add some space between the image and the text */
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

.notification .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: white;
    font-weight: bold;
}

.hamburger-menu{
    display: none;
}

.star-menu{
    display: none;
}


/* Dropdown Menu Styling */
.dropdown-menu {
    display: none;
    position: relative;
    width: 100%;
}

.dropdown-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 40px 20px 40px;
    text-align: center;
}

.dropdown-menu li {
    padding: 15px;
    margin: 10px;
    background-color: #ffffff70;
    border-radius: 12px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: rgb(0, 0, 0); /* Adjust the color as needed */
    font-size: 18px;
    display: block; /* Make the <a> fill the entire <li> */
    width: 100%;
    height: 100%;
    font-weight: bold;
    box-sizing: border-box; /* Ensure padding doesn't affect size */
}

#admin-link-star{
    font-size: 18px;
    font-weight: bold;
}

.dropdown-menu li a img {
    height: 20px;
    display: inline-block;
    transform: translateY(2px); /* Adjust the value as needed to move the image down */
}

.qlist-action-buttons {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Ensures consistent spacing between blocks */
    margin-left: -5%;
    margin-right: -5%;
}

.qlist-action-buttons  {
    padding-bottom: 35px; /* Adds padding to the bottom */
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 0; /* Adds some space above the buttons */
}

.qlist-action-buttons a:nth-child(1) button {
    background-color: darkgreen; /* Check in button */
}

.qlist-action-buttons  a:nth-child(2) button {
    background-color: crimson; /* Check out button */
}

.qlist-action-buttons  a:nth-child(3) button {
    background-color: gray; /* Waiting list button */
}

.qlist-action-buttons  a:nth-child(3) button {
    background-color: gray; /* Waiting list button */
}

.qlist-action-buttons  a:nth-child(4) button {
    background-color: gray; /* Waiting list button */
}


.qlist-action-buttons  a:nth-child(5) button {
    background-color: gray; /* Waiting list button */
}

.qlist-action-buttons  button {
    width: 100%; /* Makes the button fill the width of the parent anchor tag */
    padding: 10px;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
}

.home-inside {
        margin-top: -20px;
        padding-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* Ensures consistent spacing between blocks */
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

.overview-block-inside {
        background-color: rgba(255, 255, 255, 0.5);
        padding: 15px;
        box-sizing: border-box;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 200px; /* Ensures consistent height for all blocks */
        max-width: 194.75px;
        width: 31%;
    }

    @media screen and (min-width: 1142px) {
        .overview-block-inside {
            max-width:300px;
        }
    }
    

    .overview-block-inside strong{
        font-size: 150%;
        font-weight: 700;
    }

    .overview-block-inside span, .overview-block-inside p{
        font-weight: 500;
        font-size: 120%
    }

    .overview-block-inside ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    .overview-block-inside li {
        font-weight: 500;
        font-size: 100%;
        display: flex;
        justify-content: space-between; /* Ensures the space between strong and span is distributed */
        align-items: center;
        margin-bottom: 5px; /* Adjust as needed */
    }
    
    .overview-block-inside li strong {
        display: inline-block;
        font-size: 120%;
        width: 48px;
        margin-right: 5px; /* Add some space between the bold text and the span */
    }

    .overview-block-inside li span {
        flex-grow: 1; /* Span takes up the remaining space */
        text-align: center; /* Centers the text within the span */
    }

    .liuppermargin{
        margin-top: 10px;
    }
    
    .loading-bar-container {
        width: 100%;
        height: 15px;
        background-color: #f3f3f3;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    .loading-bar {
        width: 0%;
        height: 100%;
        background-color: #3d723d;
        transition: width 0.4s ease;
    }
    

.desktop-home-content,
    .desktop-index-buttons {
        margin-top: -20px;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* Ensures consistent spacing between blocks */
        margin-left: 8%;
        margin-right: 8%;
    }

    .mobile-home-content a{
        text-decoration: none;
        color: black;
    }
    
    .mobile-overview-block {
        background-color: rgba(255, 255, 255, 0.5);
        padding: 15px;
        width: calc(50% - 30px); /* Ensures consistent width for all blocks */
        box-sizing: border-box;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 200px; /* Ensures consistent height for all blocks */
        max-width: 300px;
    }

    .mobile-overview-block strong{
        font-size: 150%;
        font-weight: 700;
    }

    .mobile-overview-block span, .mobile-overview-block p{
        font-weight: 500;
        font-size: 120%
    }
    
    .icon-image {
        width: 36px;
        margin-left: 5px;
        margin-right: 5px; /* Adds space between the icon and the text */
        vertical-align: middle; /* Centers the icon with the text */
    }
    
    .mobile-times span {
        margin-left: 5px; /* Ensures space between the icon and the number */
    }    
    
    .mobile-times {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0px;
    }

    .mobile-times-clock {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -20px;
    }

    .mobile-times-hourglass {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -5px;
    }
    
    .mobile-times strong {
        margin-right: 5px; /* Adds spacing between "Groups:" and the dynamic value */
    }

@media screen and (min-width: 729px) {
    .show-on-mobile {
        display: none;
    }
}

/*HEADER*/
@media screen and (max-width: 730px) {
    .checkinHeader, .mobile-remove {
        display: none;
    }

    .show-on-mobile{
        display: flex;
    }

    .mobile-home-content,
    .mobile-index-buttons {
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* Ensures consistent spacing between blocks */
        margin-left: -5%;
        margin-right: -5%;
    }

    .mobile-home-content a{
        text-decoration: none;
        color: black;
    }
    
    .mobile-overview-block {
        background-color: rgba(255, 255, 255, 0.5);
        padding: 15px;
        width: calc(50% - 30px); /* Ensures consistent width for all blocks */
        box-sizing: border-box;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 150px; /* Ensures consistent height for all blocks */
    }

    .mobile-overview-block strong{
        font-size: 118%;
        font-weight: 700;
    }

    .mobile-overview-block span, .mobile-overview-block p{
        font-weight: 500;
        font-size: 110%
    }
    
    .icon-image {
        width: 36px;
        margin-left: 5px;
        margin-right: 5px; /* Adds space between the icon and the text */
        vertical-align: middle; /* Centers the icon with the text */
    }
    
    .mobile-times span {
        margin-left: 5px; /* Ensures space between the icon and the number */
    }    
    
    .mobile-times {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-times strong {
        margin-right: 5px; /* Adds spacing between "Groups:" and the dynamic value */
    }
    
    .mobile-index-buttons {
        padding-bottom: 35px; /* Adds padding to the bottom */
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 0; /* Adds some space above the buttons */
    }
    
    .mobile-index-buttons a {
        flex: 1;
        max-width: calc(33.33% - 10px); /* Ensures each link (button) takes up one-third of the available space, accounting for gaps */
        text-align: center; /* Center-aligns the button within the link */
        text-decoration: none; /* Removes the underline from the links */
    }
    
    .mobile-index-buttons a:nth-child(1) button {
        background-color: darkgreen; /* Check in button */
    }
    
    .mobile-index-buttons a:nth-child(2) button {
        background-color: crimson; /* Check out button */
    }
    
    .mobile-index-buttons a:nth-child(3) button {
        background-color: gray; /* Waiting list button */
    }
    
    .mobile-index-buttons button {
        width: 100%; /* Makes the button fill the width of the parent anchor tag */
        padding: 10px;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
        border-radius: 12px;
    }
    
    .menu-container {
        background-image: url('/media/hav-star.jpg');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        position: relative;
        width: 100%;
        overflow: hidden;
        z-index: 1;
    }
    
    .star-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        position: relative;
    }
    
    .star-logo {
        margin-left: auto;
    }
    
    .star-logo img {
        height: 70px;
    }
    
    .star-burger {
        font-size: 50px;
        width: 80px;
        text-align: center;
        display: grid;
        color: black;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.384);
        margin-left: 10px;
        border-radius: 12px;
    }

    .star-burg{
        margin-top: -5px;
    }
    

    .hamburger-menu {
        display: flex;
        align-items: center;
        background-color: rgba(154, 188, 149, 0.968);
        background-image: url(media/hav.jpg);
        background-size: 100%;
        height: 50px;
        padding: 10px;
    }

    .burger-div {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Space out the button and the nav links */
        width: 100%; /* Make the div take up full width */
        background-color: #ffffff7a;
    }

    .hamburger {
        display: inline-flex;
        margin-right: 10px; /* Add some space between the button and the nav links */
    }

    .nav-links {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style-type: none;
        flex-grow: 1; /* Allow the nav links to take up available space */
    }

    .nav-links a{
        color: black; /* Change to your preferred color */
        text-decoration: none; /* Removes the underline by default */
    }

    .nav-links li {
        margin-right: 0;
        position: relative;
    }

    .logo-ham {
        background-color: transparent;
        background-image: url(media/qtime-logo.png);
        background-size: 100px;
        background-repeat: no-repeat;
        display: inline-block;
        width: 100px;
        height: 55px;
        position: relative;
        top: 0;
        margin-left: 0;
        text-indent: -999999999px;
}
}

.indexHeader{
    height: 90px;
    background-image: none;
    background-color: none;
    padding: 20px;
    text-align: center;
      
}

.indexHeaderDiv{
    background-color: red;
    background-color: rgba(142, 143, 127, 0.968);
    background-image: url(media/hav.jpg);
    background-size: 100%;
    background-position: center;
}

@media screen and (max-width: 730px) {
    header {
        background-color: rgba(128, 124, 111, 0.968);
        background-image:none;
        height: 655px;
        padding: 0;
        text-align: center;
    }
}

.box404 {
        background-color: white; /* White background */
        width: 350px; /* Set a fixed width for the login box */
        padding: 20px; /* Add padding inside the box */
        margin: auto; /* Center horizontally */
        position: absolute; /* Absolute positioning */
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Shift the box back to perfect center */
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* Add a subtle shadow to make it appear floating */
        border-radius: 10px; /* Optional: add rounded corners */
        text-align: center; /* Center text */
    }

.box404 img{
    width: 300px;
}
/* Override global header styles for this page */
.html404 .header-404 {
    background: none; /* Remove the existing background settings */
    height: 90px; /* Keep the height or adjust as necessary */
}

.header-404 {
    height: 90px;
    padding: 20px;
    text-align: center;
    background-color: rgba(142, 143, 127, 0.968);
    background-image: url(media/hav.jpg);
    background-size: 100%;
    background-position: center;
    text-align: center;
}

.body404, .html404{
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.html404, .body404 {
    background-image: url(media/hav.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%; /* Ensure it covers the full height */
}


.div404{
    flex: 1
}

.checkinHeader{
    height: 90px;
    background-color: rgba(142, 143, 127, 0.968);
    background-image: url(media/hav.jpg);
    background-size: 100%;
    background-position: center;
    padding: 20px;
    text-align: center;
}

header a {
    color: black;
    text-decoration: none;
    margin-top: 30px;
    background-size: 5px 5px 5px 5px;
}

header a:hover{
    text-decoration: underline;
}

header .logo a {
    background-color: transparent;
    background-image: url(media/timeQ-logo-black.png);
    background-size: 100px;
    background-repeat: no-repeat;
    display: inline-block;
    width: 100px;
    height: 55px;
    position: relative;
    color: transparent; /* Makes the text invisible */
    top: -10px;
 
}
nav ul {
    margin: 0;
    padding: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.395);
    list-style-type: none;
}
nav li {
   display: inline-block; 
   margin-right: 20px;
}

nav li img {
    width: 25px;
    margin-top: -50px;
    display: inline-block;
}

.logout-click{
    cursor: pointer;
}
.logout-click:hover{
    cursor: pointer;
    text-decoration: underline;
}
/* Specific styling for the lock icon in the header */
.header-lock img {
    /* Adjust the position of the lock icon */
    vertical-align: middle; /* Align the icon vertically to the middle of the text */
    margin-left: 1px; /* Adds space between the text and the icon */
    margin-top: -5px; /* Moves the icon slightly upwards (adjust this value as needed) */
    display: inline-block; /* Ensure the icon aligns properly with text */
    /* You can add more positioning adjustments here if needed */
}

.material-icons-outlined {
    /* Adjust the position of the lock icon */
    vertical-align: middle; /* Align the icon vertically to the middle of the text */
    margin-left: 1px; /* Adds space between the text and the icon */
    margin-top: -5px; /* Moves the icon slightly upwards (adjust this value as needed) */
    display: inline-block; /* Ensure the icon aligns properly with text */
    line-height: 1; /* Ensures the icon doesn't add extra spacing */
}


header .person a {
    background-color: transparent;
    background-image: url(media/icon-person-black.png);
    background-size: 25px;
    background-repeat: no-repeat;
    display: inline-block;
    width: 100px;
    height: 55px;
    position: relative;
    top: -0px;
    text-indent: -9999
}

/* Wrapper för tabellen som gör den skrollbar horisontellt */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Ger smooth scrolling på mobila enheter */
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.page-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

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

.page-button.active {
    background-color: #0056b3;
    cursor: default;
}



#requests-list, #waiting-list {
    width: 100%; /* Make table take up the full width of the container */
    border-collapse: collapse; /* Ensure borders collapse into a single border */
  }

  /* Zebra striping for table rows */
#requests-list tbody tr:nth-child(odd), #waiting-list tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Background color for odd rows */
  }

  #requests-list tbody tr:nth-child(even), #waiting-list tbody tr:nth-child(even) {
    background-color: #e9e9e9; /* Background color for even rows */
  }

  /* Optional: styling for table headers */
  #requests-list th, #waiting-list th {
    background-color: #b3b1b1;
    text-align: left;
    padding: 8px 4px 8px 4px;
    font-size: 20px;
  }

  /* Optional: styling for table cells */
 #requests-list td, #waiting-list td {
    padding: 8px;
    font-size: 18px;
  }


  /* Optional: add a border to the table and cells */
 #requests-list,  #requests-list th,  #requests-list td,#waiting-list, #waiting-list th, #waiting-list td {
    border: 1px solid #ddd;
  }

/*QBLOCKS*/
.indexQblockDiv {
    justify-content: center; /* Center the items horizontally */
    flex-wrap: wrap; /* Allow items to wrap onto the next line */
    align-items: center; /* Center items vertically */
    align-content: center; /* Center wrapped lines within the container */
    width: 100%; /* Ensure the container takes up the full width */
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

    

.qblocksection{
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap onto the next line */
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    width: 100%; /* Ensure the section takes the full width of the parent container */
    height: 100%; /* Set the height if needed */
    box-sizing: border-box; /* Include padding and border in the width calculation */
    text-align: center; /* Center text inside the sections */
}


#puck-buttons-checkin, #puck-buttons-admin {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indexQblockDiv{
    margin: 15px;
    background-color: rgba(189, 188, 188, 0.609);
    display: inline-block;
    height: 250px;
    width: 250px;
    text-align: center;
    padding: 5px;
    cursor: pointer;
}
.indexQblockDiv p{
    margin: 5px 0;
    padding: 5px;
}
.indexQblockDiv h3{
    margin:0;
    padding:0;
}
.categoryName{
    font-size: 25px;
    margin-top: 15px;
    font-weight: bold;
}
.waitingtime {
    font-size: 70px;
    margin-bottom: -50px;
}

.displaytime{
    font-size: 18px;
    display: block;
    position: top;
}

.peopleInQueue{
    display: inline;
    font-size: 18px;
}

.pulsate {
    animation: pulsate 2s infinite;
  }

  @keyframes pulsate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .red-text {
    color: rgb(127, 62, 62);
  }

  .orange-text {
    color: rgb(117, 92, 39);
  }

  .wait-background-red {
    background-color: rgba(197, 159, 159, 0.635); /* Byt till den färg du vill ha */
}

.wait-background-orange {
    background-color: rgba(197, 188, 159, 0.635); /* Byt till den färg du vill ha */
}




  @media screen and (max-width: 730px) {
    .buttons,
    .buttons-2 {
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap onto the next line */
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    .buttons div,
    .buttons-2 div {
        padding: 5px;
        margin: 10px;
        display: flex;
        justify-content: center; /* Center content within each div */
    }

}


/*BUTTONS*/
.buttons-container {
    background-color: 0;
    margin: -5px 90px 20px 90px;
    padding: 0px;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0 px;
}

.buttons div{
    padding: 5px 5px 5px 5px;
    margin: 20px 10px 10px 10px;
    display: inline-block;
}

.buttons-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -5 px;
}

.buttons-2 div{
    padding: 0px 20px 0 20px;
    margin: 10px 10px;
    display: inline-block;
}

.buttons-actions-qlist {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    margin-top: -20px;
}

.button-action-section{
    font-size: 25px;
    padding: 5px;
    border-radius: 5px;
    border: solid gray;
    background-color: rgb(214, 212, 212);
    margin: 5px;
}
.button-action-section:hover{
    background-color: #aba8a8;
    cursor: pointer;
}

.buttons-actions-qlist div{
    padding: 5px 5px 5px 5px;
    margin: 10px 10px;
    display: inline-block;
}

.button-checkin{
    background-color: rgb(98, 145, 98);
    border: 2px solid rgb(87, 135, 91);
    color: rgb(231, 229, 229);
    border-radius: 12px;
    font-size: 38px;
    height: 100px;
    width: 250px;
    padding: 0;
}
.button-checkin:hover {
    background-color: rgb(65, 135, 70);
}
.button-checkout{
    background-color: rgb(163, 105, 91);
    border: 2px solid rgb(177, 104, 73);
    color: rgb(231, 229, 229);
    border-radius: 12px;
    font-size: 38px;
    height: 100px;
    width: 250px;
}
.button-checkout:hover {
    background-color: rgb(157, 86, 62);
}

.qblock-dash-div{
    background-color: rgba(154, 188, 149, 0.968);
    background-image: url(media/hav.jpg);
    background-size: 100%;
    background-position: center;
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    align-items: center;     /* Centers the items vertically */
    flex-wrap: wrap;         /* Allows wrapping of items if they overflow */
    padding: 20px;           /* Adds padding around the items */
    width: 100%;             /* Ensures the div takes up the full width of the parent */
    box-sizing: border-box;  /* Includes padding in the element's total width and height */
}
.qblock-dash-div > section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.qblock-dash-div > section > div {
    text-align: center; /* Centers the content inside each individual block */
    padding: 10px;
    margin: 10px;
    flex: 1; /* Makes each block take an equal amount of space */
    min-width: 200px; /* Ensures that each block has a minimum width */
}

.qblock-dash section{
    display: flex;
}
.qblock-dash div{
    margin: 15px;
    background-color: rgba(189, 188, 188, 0.609);
    display: inline-block;
    height: 250px;
    width: 250px;
    text-align: center;
    padding: 5px;
}
.qblock-dash div p{
    margin: 5px 0;
    padding: 5px;
}

/*QBLOCKS FOR TOTAL*/
.qblock-total-upper-div{
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    align-items: center; /* Centers the items vertically if necessary */
    padding: 20px;
    width: 100%;
    box-sizing: border-box; /* Includes padding in the element's total width and height */
    margin-bottom: -10px;
    margin-top: -35px;
}

.qblock-total section{
    display: flex;
    padding: 20px;
}
.qblock-total div{
    margin: 15px;
    background-color: rgba(189, 188, 188, 0.609);
    display: inline-block;
    height: 50px;
    width: 240px;
    text-align: center;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 0px;
}
.qblock-total div p{
    margin: 0;
    margin-top: 8px;
    padding: 5px;
    display: inline-block;
}
.qblock-total a{
    text-decoration: none;
    color:inherit;
}
.categoryName-total{
    font-size: 20px;
    margin-bottom: -8px;
    display: inline-block;
    width: 30px;
    font-weight: bold;
}
.waitingtime-total {
    font-size: 20px;
    display: inline-block;
}
.displaytime-total{
    font-size: 20px;
    display: inline-block;
}

.qblock-total div h3{
    margin-top: 3px;
}

/* */

.button-qlist{
    background-color: rgb(123, 123, 123);
    border: 2px solid rgb(72, 71, 71);
    color: rgb(231, 229, 229);
    border-radius: 12px;
    font-size: 50px;
    height: 100px;
    width: 250px;
}
.button-qlist:hover {
    background-color: rgb(1, 1, 1);
}

.general-div {
    background-color: rgba(0, 0, 0, 0.126);
    padding: 5px;
    padding-top: 10px;
    margin: 20px;
    padding-bottom: 30px;
}

.title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px;
    margin-bottom: 0;
  }
  
  .qlist-title {
    margin: 0;
    font-size: 24px; /* Du kan justera storleken efter behov */
  }

  .title-container a{
    text-decoration: none;
    color: inherit;
  }
  
  .restore-button {
    background-color: rgb(0, 98, 255);
    color: white;
    border: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 5px;
    font-size: 16px;
  }
  
  .restore-button .material-icons-outlined {
    margin-left: 5px;
  }
  

/* CHECK IN */
.checkin-div {
    background-color: rgba(0, 0, 0, 0.126);
    min-height: 200px;
    padding: 5px;
    padding-top: 10px;
    margin: 20px;
}

.checkin-div-wait {
    background-color: none;
    min-height: 200px;
    padding: 5px;
    padding-top: 10px;
    margin: 5px;
}

.dashboard-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    margin: 20px;
    background-color: rgba(0, 0, 0, 0.126);
}

/* Set font style for the entire date picker area */ 
#dashboard-div-for-prediction-date-picker label,
#dashboard-div-for-prediction-date-picker input[type="datetime-local"],
#dashboard-div-for-prediction-date-picker button {
    font-family: 'Arial', sans-serif; /* Change to your desired font */
    font-size: 16px; /* Adjust the size as needed */
    color: #333; /* Text color */
}

/* Additional styling for the input fields */
#dashboard-div-for-prediction-date-picker input[type="datetime-local"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Additional styling for the button */
#dashboard-div-for-prediction-date-picker button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#dashboard-div-for-prediction-date-picker button:hover {
    background-color: #0056b3;
}

/* Optional: Ensure that the inner content is displayed in a row */
#prediction-date-picker {
    display: flex;
    flex-direction: row;
    gap: 10px; /* Space between the items */
}

/* Make elements stack vertically on smaller screens */
@media (max-width: 730px) {
    #prediction-date-picker {
        flex-direction: column;
        align-items: stretch; /* Make elements take full width */
    }

    #dashboard-div-for-prediction-date-picker label,
    #dashboard-div-for-prediction-date-picker input[type="datetime-local"],
    #dashboard-div-for-prediction-date-picker button {
        width: 100%;
        text-align: left;
    }

    #dashboard-div-for-prediction-date-picker input[type="datetime-local"],
    #dashboard-div-for-prediction-date-picker button {
        padding: 10px;
        box-sizing: border-box;
    }

    #dashboard-div-for-prediction-date-picker button {
        margin-top: 10px;
    }

    .dashboard-div-for-prediction-date-picker{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 15% 10px 15%;
        margin: 10px;
        background-color: rgba(0, 0, 0, 0.126);
    }
}

@media (min-width: 731px){
.dashboard-div-for-prediction-date-picker{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
    background-color: rgba(0, 0, 0, 0.126);
}}


.confirm-checkin-button-div {
    margin-top: -10px;
    margin-bottom: 15px;
}
/* CHECK IN SUMMARY */
.summary-box-flex {
    background-color: rgb(219, 215, 215);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 8px;
    padding: 6px;
    margin-top: 2px;
    text-align: center;
    width: 100%; /* Make sure it takes the full width of its container */
    box-sizing: border-box; /* Ensure padding and borders are included in the width */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out child elements */
    align-items: center; /* Center child elements vertically */
    margin-bottom: 12px;
}
.summary-box-flex-comment {
    background-color: rgb(219, 215, 215);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 8px;
    padding: 6px;
    margin-top: 2px;
    width: 100%; /* Make sure it takes the full width of its container */
    box-sizing: border-box; /* Ensure padding and borders are included in the width */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out child elements */
    margin-bottom: 12px;
    height: 80px;
    overflow-y: auto; /* Scroll only vertically */
    overflow-x: hidden; /* Hide horizontal overflow */
    word-wrap: break-word; /* Break words that are too long */
}
/* Non-editable Toggle Buttons in Summary */
.toggle-buttons-summary {
    display: inline-block;
    border: 1px solid rgb(72, 71, 71);
    border-radius: 12px;
    overflow: hidden;
    height: 35px; /* Set a consistent height */
    margin: 0;
    padding: 0; /* Remove any padding */
    background-color: rgb(123, 123, 123); /* Set background color */
}

.toggle-label-summary {
    flex: 1;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    height: 100%; /* Ensure it fills the parent container */
    font-size: 20px;
    background-color: rgb(123, 123, 123);
    color: rgb(231, 229, 229);
    text-align: center;
    box-sizing: border-box; /* Ensure padding and borders are included in the element's total width and height */
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    flex-direction: column; /* Stack text and image vertically, if needed */
    cursor: default; /* Make it non-clickable */
    opacity: 0.4; /* Make it slightly transparent to indicate non-editability */
}

.toggle-label-summary img {
    width: 20px;
    vertical-align: middle;
    margin-bottom: 0px; /* Optional: Add some space below the image */
}

#summary-waiting-area-tent.active{
    background-color: #4b8663; /* Green for 'Tent' and 'Stroller' */
    opacity: 1;
}
#summary-stroller-yes.checked {
    background-color: #466c7e; /* Green for 'Tent' and 'Stroller' */
    opacity: 1;
}

#summary-waiting-area-beach.active {
    background-color: #b0978b; /* Brown for 'Beach' */
    opacity: 1;
}

#summary-stroller-no.active {
    background-color: #ae716b; /* Red for 'No Stroller' */
    opacity: 1;
}


.checkin-summary{
    background-color: rgba(113, 147, 129, 0.434);
    min-height: 220px;
    padding: 5px;
    margin: 20px;
}
/* Summary section styling */
.summary-boxes {
    display: flex;
    justify-content: center; /* Center the boxes horizontally */
    gap: 20px; /* Space between boxes */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    margin-top: 20px;
}

.summary-box {
    background-color: rgb(219, 215, 215);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    width: 150px; /* Set width for boxes */
    display: inline-flexbox;
}

.summary-box p {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
}

.summary-box span {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}

/* Summary buttons styling */
.summary-buttons {
    text-align: center;
    margin: 20px;
}

.button-next, .button-dashboard, .button-waitlist{
    padding: 0;
}

.button-next{
    background-color: rgb(91, 140, 102);
    border: 2px solid rgb(62, 87, 64);
    color: rgb(231, 229, 229);
    border-radius: 12px;
    font-size: 25px;
    height: 50px;
    width: 150px;
    padding: 0;
}
.button-next:hover {
    background-color: rgb(65, 135, 70);
}

.button-dashboard{
    background-color: rgb(112, 113, 112);
    border: 2px solid rgb(72, 72, 72);
    color: rgb(231, 229, 229);
    border-radius: 12px;
    font-size: 25px;
    height: 50px;
    width: 150px;
}
.button-dashboard:hover {
    background-color: rgb(83, 87, 83);
}

.inline-1{
    width: 48.5%;
    margin-right: 1%;
    display: inline-block;
    align-items: right;
}

.inline-2{
    width: 48.5%;
    margin-left: 1%;
    display: inline-block;
    align-items: right;
}

.button-waitlist{
    background-color: rgb(134, 113, 67);
    border: 2px solid rgb(118, 99, 59);
    color: rgb(231, 229, 229);
    border-radius: 12px;
    font-size: 25px;
    height: 50px;
    width: 150px;
}
.button-waitlist:hover {
    background-color: rgb(83, 87, 83);
}

.checkin-div h2{
    margin: 0px;
    text-align: left;
    display: block;
}
.form-title{
    text-align: left;

}
.checkinsection {
    padding: 12px;
    text-align: center;
}
.checkin-title{
    font-size: 30px;
    text-align: center;
}
.checkinForm {
    padding-left: 12px;
    text-align: center;
}

/* Icon styling */
.material-symbols-outlined {
    font-size: 40px; /* Adjust size as needed */
    color: rgb(123, 123, 123); /* Icon color */
    vertical-align: middle; /* Align icon with the middle of the text */
    margin-right: 10px; /* Space between icon and the radio buttons */
}

.add-number-button {
    border-radius: 12px;
    height: 48px;
    width: 50px;
    font-size: 25px;
    background-color: rgb(128, 130, 128);
    margin-top: 10px;
    margin-left: 2px;
    margin-right: 2px;
    border: 2px solid rgb(72, 71, 71);
    text-align: center;
    display: inline-block;
    padding: 0;
    color: white;
}

/* Toggle buttons styling */
.add-comment-button {
    border-radius: 12px;
    height: 48px;
    width: 48px;
    font-size: 20px;
    background-color: rgb(98, 145, 98);
    margin-top: 20px;
    border: 2px solid rgb(72, 71, 71);
    text-align: center;
    display: inline-block;
    padding: 0;
}
.add-comment-button:hover {
    background-color: rgb(65, 135, 70);
}
.add-comment-button img {
    height: 25px;
}
.add-comment-box {
    width: 260px;
    height: 100px;
    border-radius: 10px;
    padding: 12px;
    font-family: Arial, Helvetica, sans-serif ;
    font-size: 16px;
}
.checkin-summary-strong-headers{
    padding-top: 2px;
    padding-bottom: 10px;
}

.toggle-closer-to-text{
    margin-top: -15px;
}

/* TOGGLE BUTTON FOR EDIT FORM */
.toggle-buttons-edit {
    display: flex;
    border: 1px solid rgb(72, 71, 71);
    border-radius: 4px;
    overflow: hidden;
    height: 35px; /* Set a consistent height */
    margin: 0;
    padding: 0; /* Remove any padding */
    background-color: rgb(123, 123, 123); /* Set background color */
    margin-top: 0px;
}

.toggle-buttons-edit input[type="radio"] {
    display: none;
}

.toggle-label-edit {
    flex: 1;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    height: 100%; /* Ensure it fills the parent container */
    font-size: 20px;
    cursor: pointer;
    background-color: rgb(123, 123, 123);
    color: rgb(231, 229, 229);
    text-align: center;
    box-sizing: border-box; /* Ensure padding and borders are included in the element's total width and height */
    transition: background-color 0.3s ease;
    display: flex; /* Use flexbox */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    flex-direction: column; /* Stack text and image vertically, if needed */
}
#prediction-date-picker{
    display: block
}

.toggle-label-edit img {
    width: 20px;
    vertical-align: middle;
    margin-bottom: 0px; /* Optional: Add some space below the image */
}

.toggle-buttons-edit input[type="radio"] + .toggle-label-edit {
    background-color: rgb(123, 123, 123);
}


#stroller-no:checked + .toggle-label-edit {
    background-color: #ae716b; /* Red for 'No Stroller' */
}

#stroller-yes:checked + .toggle-label-edit {
    background-color: #466c7e; /* Green for 'Stroller' */
}

#waiting-tent:checked + .toggle-label-edit {
    background-color: #467e5d; /* Green for 'Tent' */
}

#waiting-beach:checked + .toggle-label-edit {
    background-color: #b0978b; /* Brown for 'Beach' */
}

.toggle-buttons-edit label {
    margin: 0;
}

.toggle-label-edit:hover {
    opacity: 0.8;
}
#summary-stroller-no:checked + .toggle-label-edit {
    background-color: #ae716b;
}

#summary-stroller-yes:checked + .toggle-label-edit {
    background-color: #466c7e;
}

#summary-waiting-tent:checked + .toggle-label-edit {
    background-color: #467e5d;
}

#summary-waiting-beach:checked + .toggle-label-edit {
    background-color: #b0978b;
}


/**/

#confirm-yes {
    background-color: rgb(150, 60, 60);
}

#confirm-no {
    background-color: rgb(130, 150, 60);
}

/*DASHBOARD TOGGLES*/
.dashboard-toggle-buttons {
    display: inline-block;
    border: 2px solid rgb(72, 71, 71);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-toggle-buttons input[type="radio"] {
    display: none;
}

.dashboard-toggle-label {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: rgb(123, 123, 123);
    color: rgb(231, 229, 229);
    float: left;
    width: 100px;
    text-align: center;
}

.dashboard-toggle-label img {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.dashboard-toggle-buttons input[type="radio"] + .dashboard-toggle-label {
    background-color: rgb(123, 123, 123);
}

#dashboard-longest-wait:checked + .dashboard-toggle-label {
    background-color: #ae716b; /* Color for 'Longest Wait' */
}

#dashboard-total-wait:checked + .dashboard-toggle-label {
    background-color: #4b8663; /* Color for 'Total Wait' */
}

#dashboard-average-wait:checked + .dashboard-toggle-label {
    background-color: #467e5d; /* Color for 'Average Wait' */
}

.dashboard-toggle-buttons label {
    margin: 0;
}

.dashboard-toggle-label:hover {
    opacity: 0.8;
}



.dashboard-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 414px) {
    .dashboard-toggle-label {
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        background-color: rgb(123, 123, 123);
        color: rgb(231, 229, 229);
        float: left;
        width: 50px;
        text-align: center;
    }}

/**/

.toggle-buttons {
    display: inline-block;
    border: 2px solid rgb(72, 71, 71);
    border-radius: 12px;
    overflow: hidden;
}

.toggle-buttons input[type="radio"] {
    display: none;
}

.toggle-label {
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: rgb(123, 123, 123);
    color: rgb(231, 229, 229);
    float: left;
    width: 100px;
    text-align: center;
}
.toggle-label img{
    width: 20px;
}


.toggle-buttons input[type="radio"] + .toggle-label {
    background-color: rgb(123, 123, 123);
}

#stroller-no:checked + .toggle-label {
    background-color: #ae716b; /* Red for 'No Stroller' */
}

#stroller-yes:checked + .toggle-label {
    background-color: #466c7e; /* Green for 'Stroller' */
}

#waiting-tent:checked + .toggle-label {
    background-color: #467e5d; /* Green for 'Tent' */
}

#waiting-beach:checked + .toggle-label {
    background-color: #b0978b; /* Brown for 'Beach' */
}
.toggle-buttons label {
    margin: 0;
}

.toggle-label:hover {
    opacity: 0.8;
}

.num-guests-input{
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    width: 185px;
    height: 25px;
    text-align: center;
    display: inline-block;
    border: 2px solid rgb(72, 71, 71);
    border-radius: 12px;
    overflow: hidden;
}
.form-row {
    display: flex;
    align-items: center; /* Align items vertically in the center */
    justify-content: center;
    margin-bottom: -15px;
    margin-top: -20px;
  }
  
  .form-row label {
    margin-right: 10px; /* Adjust spacing between label and input */
  }
  
  #toggleComment {
    margin-left: 10px; /* Adjust spacing between input and button */
  }
  
  #commentSection {
    margin-top: 10px;
  }  

.puck-button {
    background-color: rgb(125, 160, 125);
    border: 2px solid rgb(0, 0, 0);
    border-radius: 12px;
    font-size: 40px;
    height: 73px;
    width: 73px;
    margin:3px;
    color:#080808;
    padding: 0;
}

.puck-button:disabled {
    opacity: 0.3;
    border: 2px solid rgb(61, 61, 61);
    color:#3d3e3d
}



/* Color for buttons starting with "A" */
/* Color for buttons starting with "A" */
.puck-button-A {
    background-color: #7596ba; /* Blue */
}

/* Color for buttons starting with "B" */
.puck-button-B {
    background-color: #78aa84; /* Green */
}

/* Color for buttons starting with "C" */
.puck-button-C {
    background-color: #bc888d; /* Red */
}

/* Color for buttons starting with "D" */
.puck-button-D {
    background-color: #c6c684; /* Red */
}

/* Color for buttons starting with "E" */
.puck-button-E {
    background-color: #A1887F; /* Red */
}

.puck-button-F {
    background-color: #D2b48c; /* Red */
}

.puck-button-G {
    background-color: #db844e; /* Red */
}


.puck-button.selected {
    background-color: rgba(255, 255, 255, 0.463);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 12px;

}
.q-block-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Optional: This will allow the buttons to wrap to the next line if they exceed the container's width */
    margin: 0 auto;  /* Center horizontally */
    max-width: 100%; /* Ensure it doesn't exceed the container */
    padding: 3px;
}

.button-confirm-yes{
    background-color: darkgreen;
    border: none;
    border-radius: 12px;
    border-width: 1px;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    height: auto;
    color: white;
}
.button-confirm-no{
    background-color: crimson;
    border: none;
    border-radius: 12px;
    border-width: 1px;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    margin-right: 5px;
    height: auto;
    color: white;
}
.button-confirm-no:hover, .button-confirm-yes:hover{
    opacity: 0.8;
}

.confirm-buttons{
    display: inline-flex;
    align-items: center;
}

/*FEATURES*/
.features {
    background:  rgba(177, 206, 173, 0.546);
    padding: 10px;
    display: flex;
    flex-direction: row;
}
.features figure {
    margin: auto;
    text-align: center;
    width: 200px;    
}
.features figure img {
    border-radius: 50%;
    border: 1px solid white;
    box-shadow: gray 0 0 100px;
    width: 200px;

}

footer {
    background:rgb(99, 99, 99);
    text-align: center;
    font-size: 12px;
    color: white;
    padding: 20px;
}
/*FILTERS*/
.filter-button{
    background-color: rgba(0, 0, 0, 0);
    border: rgba(0, 0, 0, 0);
    display: inline-flex;
    margin-left: -15px;
    cursor: pointer;
}
.filter-button img{
    background-color: rgba(0, 0, 0, 0);
    height: 15px;
}
filter.button:hover{
    background-color: rgba(0, 0, 0, 0.331);
}
.filter-input{
    width: 100%;
    border-radius: 5px;
    border: solid black;
    border-width: 1px;
    padding: 1px;
    font-size: 16px;
}
.filter-dropdown{
    width: 100%;
    border-radius: 5px;
    border: solid black;
    border-width: 1px;
    padding: 1px;
    font-size: 16px;
    color: black;
}
/*MODAL*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }

  #checkin-summary-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

  .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* Styles for sort buttons */
  .sort-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color:black;
  }

  .sort-button:focus {
    outline: none;
  }

  .message-button-remove, .message-button-ignore, .message-button, .checkout-icon-button, .delete-icon-button, .edit-qlist-button, .highlight-button, .toggle-actions-button, .view-comment-button {
    margin-bottom: 3px;
    margin-right: -1px;
}



/* UPDATE STATUS BUTTONS */
.seating-button, .choose-seater-button, .checkout-button, .want-to-wait-button {
    top: -5px;
    position: relative;
    margin-left: 5px;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid white;
}

.seating-button {
    background-color: rgb(222, 189, 22);
}

.choose-seater-button {
    background-color: rgb(48, 107, 161);
    color: white;
}

.checkout-button {
    background-color: rgb(48, 161, 55);
    color: white;
}

.want-to-wait-button{
    background-color: #d9534f;
    color: white;
}
/* SEATING MODAL COLORS*/
.seating-choice-A {
  background-color: #4a90e2; /* blå, som "A" */
  color: white;
}

.seating-choice-B {
  background-color: #d2a3d7ff; /* orange, som "B" */
  color: white;
}

.seating-choice-C {
  background-color: #7ed321; /* grön, som "C" */
  color: white;
}

.seating-choice {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  margin: 5px;
  font-size: 3rem;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
}



/* View Comment Button */
.view-comment {
    background-color: rgb(179, 111, 9);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.undo-button {
    background-color: rgb(9, 108, 179);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.view-comment img, .undo-button img {
    height: 20px;             /* Adjust the size of the icon */
    width: auto;              /* Maintain aspect ratio */
}

.inprogress-button, .deny-button, .found-button, .notfound-button, .restorereject-button {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid white; 
    padding: 5px;
    color: white;
    min-width: 97px;
}

.inprogress-button {
    background-color: darkgreen;
}

.deny-button, .notfound-button {
    background-color: darkred !important; /* Force the red background */
}

.found-button {
    background-color: darkblue
}

.restorereject-button{
    background-color: rgb(42, 94, 172);
}

.inprogress-button img, .deny-button img, .found-button img, .notfound-button img, .restorereject-button img{
    height: 20px;
    width: auto;  
    margin-right: 5px;
}

.restorereject-button:hover, .inprogress-button:hover, .deny-button:hover, .found-button:hover, .notfound-button:hover {
    cursor: pointer;
    opacity: 0.8;
}


.message-button {
    background-color: rgb(6, 90, 113);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white; 
}

.message-button-ignore {
    background-color: rgb(10, 138, 174);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white; 
}

.message-button-remove{
    background-color: rgb(93, 8, 8);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white; 
}

.message-button-ignore img, .message-button img, .message-button-remove img{
    height: 20px;             /* Adjust the size of the icon */
    width: auto;   
}

.message-button:hover, .message-button-remove:hover{
    cursor:pointer;
    opacity: 0.8 
}


/* View Comment Button */
.highlight-button {
    background-color: rgb(2, 66, 126);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.highlight-button img {
    height: 20px;             /* Adjust the size of the icon */
    width: auto;              /* Maintain aspect ratio */
}

.highlight-button:hover {
    cursor:pointer;
    opacity: 0.8
}

.restore-button-list {
    background-color: rgb(42, 94, 172);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.restore-button-list img {
    height: 20px;             /* Adjust the size of the icon */
    width: auto;              /* Maintain aspect ratio */
}

.restore-button-list:hover{
    opacity: 0.8;
}

/* EDIT ENTRY Button */
.edit-qlist-button {
    background-color: rgb(100, 100, 100);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.edit-qlist-button img {
    height: 20px;             /* Adjust the size of the icon */
    width: auto;              /* Maintain aspect ratio */
}

.edit-qlist-button:disabled, .checkout-icon-button:disabled, .delete-icon-button:disabled, .message-button:disabled, .toggle-actions-button:disabled{
    opacity: 0.7;
    cursor:not-allowed;
}

.testtest{
    color: rgba(83, 121, 77, 0.516)
}

.toggle-actions-button {
    background-color: rgb(81, 81, 81);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.toggle-actions-button img {
    height: 20px;             /* Adjust the size of the icon */
    width: auto;              /* Maintain aspect ratio */
}

/* CHECK OUT Button */
.checkout-icon-button {
    background-color: rgb(91, 114, 91);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.checkout-icon-button img {
    height: 20px;             /* Adjust the size of the icon */
    width: auto;              /* Maintain aspect ratio */
}

/* DELETE ICON */
.delete-icon-button {
    background-color: rgb(142, 55, 55);
    height: 30px;
    width: 30px;
    display: inline-flex;            /* Enable Flexbox layout */
    align-items: center;      /* Center items vertically */
    justify-content: center;  /* Center items horizontally */
    border-radius: 5px;       /* Make it a circle */
    border: 1px solid white;  /* Optional: Add a border */
}

.delete-icon-button img {
    height: 20px;             /* Adjust the size of the icon */
    width: auto;              /* Maintain aspect ratio */
}

.delete-icon-button:hover, .edit-qlist-button:hover, .checkout-icon-button:hover, .view-comment:hover {
    opacity: 0.7;
}

#user-locker-content{
    display: inline-flex;
    width: 100%;
    display: flex;
    justify-content: center;
}

#user-locker-content img {
    width: 50px;
}

#modal-button-container {
    display: flex;
    flex-wrap: wrap; /* Tillåter knapparna att brytas till nästa rad */
    width: 100%;
    max-width: 100%; /* Förhindrar att container överstiger modalens bredd */
    justify-content: center; /* Centrerar knapparna */
    box-sizing: border-box; /* Inkluderar padding och border i bredden */
}
.lock-button-A{
    background-color: blue;
    border-radius: 12px;
    
}

.lock-button-B {
    background-color: orange;
    border-radius: 12px;
}

.lock-button-C {
    background-color: green;
    border-radius: 12px;
}

.lock-button-A, .lock-button-B, .lock-button-C{
    padding: 10px 30px;
    margin: 10px;
}

#lock-by-user-A {
    background-color: blue;
    border-radius: 12px;
}

#lock-by-user-B {
    background-color: orange;
    border-radius: 12px;
}

#lock-by-user-C {
    background-color: green;
    border-radius: 12px;
}

#user-locker-content button {
    padding: 10px 30px;
    margin: 10px;
}

#user-locker-content button:hover{
    opacity: 0.8;
    cursor:pointer;
}



/* Add a border at the bottom of each table row */
#waiting-list tbody tr, #requests-list tbody tr  {
    border-bottom: 1px solid #080808;
  }
  
  /* Optionally, you can add padding to the cells to ensure the borders look well-spaced */
  #requests-list tbody td, #waiting-list tbody td {
    padding: 10px;
  }
  


/* Modal background (the overlay) */
#edit-form-modal, #beach-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal content box */
#edit-form-modal form, #beach-modal form {
    background-color: #fff;
    margin: 10% auto; /* 10% from the top and center horizontally */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}


/* Input styling inside the modal form */
#auth-form input[type="text"],
#auth-form input[type="password"],
#beach-modal form textarea,
#edit-form-modal form textarea,
#edit-form-modal form input[type="text"],
#edit-form-modal form input[type="number"],
#edit-form-modal form input[type="checkbox"] {
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.edit-comment-input {
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Label styling */
#beach-modal form label,
#edit-form-modal form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* Submit and cancel button styling */
#auth-form button[type="submit"],
#auth-form button[type="button"],
#beach-modal form button[type="submit"],
#beach-modal form button[type="button"],
#edit-form-modal form button[type="submit"],
#edit-form-modal form button[type="button"] {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

#edit-form-modal form button[type="button"],
#beach-modal form button[type="button"],
#auth-form button[type="button"] {
    background-color: #f44336; /* Red for cancel */
}

/* Hover effects for buttons */
#beach-modal form button:hover,
#edit-form-modal form button:hover {
    opacity: 0.9;
}

/* Close button (optional if you want an X close button in top-right) */
#edit-form-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#edit-form-modal .close:hover,
#edit-form-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* STYLING FOR MODAL IN EDITING USER FOR ADMIN*/
/* Modal background (the overlay) */
#edit-user-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal content box */
#edit-user-modal form {
    background-color: #fff;
    margin: 10% auto; /* 10% from the top and center horizontally */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px; /* Could be more or less depending on your design */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

/* Input styling inside the modal form */
#edit-user-modal form textarea,
#edit-user-modal form select,
#edit-user-modal form input[type="password"],
#edit-user-modal form input[type="text"],
#edit-user-modal form input[type="number"],
#edit-user-modal form input[type="checkbox"] {
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#edit-user-modal form select{
    font-size: 16px;
    width: 100%;
    color: black;
    height: 40px;
}

.edit-comment-input {
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Label styling */
#edit-user-modal form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* Submit and cancel button styling */
#edit-user-modal form button[type="submit"],
#edit-user-modal form button[type="button"] {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

#edit-user-modal form button[type="button"] {
    background-color: #f44336; /* Red for cancel */
}

/* Hover effects for buttons */
#edit-user-modal form button:hover {
    opacity: 0.9;
}

/* Close button (optional if you want an X close button in top-right) */
#edit-user-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#edit-user-modal .close:hover,
#edit-user-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* --------------------------------------------
------------------STYLING --------------------
--------------TABLE HEAD AND BUTTON OPTIONS--------------
----------------------------------------------*/

.user-header {
    display: flex;
    justify-content: space-between; /* Distribute space between elements */
    align-items: center; /* Vertically align items to the center */
    margin-bottom: 10px; /* Add some space below the header */
}

.user-header h2{
    margin: 0 0 0 10px;
}

.button-create {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Some padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 8px;
    margin-right: 10px;
}

.button-create:hover {
    background-color: #45a049; /* Darker green on hover */
}

.button-delete {
    background-color: #af3d34; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Some padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 8px;
    margin-right: 0px;
}

.button-delete:hover {
    background-color: #86332d; /* Darker green on hover */
}

.button-reset {
    background-color: #3469af; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Some padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 8px;
    margin-right: 0px;
}

.button-reset:hover {
    background-color: #385475; /* Darker green on hover */
}

.button-download {
    background-color: #3469af; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Some padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.button-download span {
    margin-top: 0;
}

.button-download:hover {
    background-color: #385475; /* Darker green on hover */
}


/* --------------------------------------------
------------------STYLING --------------------
--------------MODAL FOR NEW USER---------------
----------------------------------------------*/

#create-user-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal content box */
#create-user-modal form {
    background-color: #fff;
    margin: 10% auto; /* 10% from the top and center horizontally */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less depending on your design */
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

/* Input styling inside the modal form */
#create-user-modal form textarea,
#create-user-modal form select,
#create-user-modal form input[type="password"],
#create-user-modal form input[type="text"],
#create-user-modal form input[type="number"],
#create-user-modal form input[type="checkbox"] {
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#create-user-modal form select{
    font-size: 16px;
    width: 100%;
    color: black;
    height: 40px;
}

.modal-button-container-form{
    margin-top: 5px;
}

.create-comment-input {
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Label styling */
#create-user-modal form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* Submit and cancel button styling */
#create-user-modal form button[type="submit"],
#create-user-modal form button[type="button"] {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

#create-user-modal form button[type="button"] {
    background-color: #f44336; /* Red for cancel */
}

/* Hover effects for buttons */
#create-user-modal form button:hover {
    opacity: 0.9;
}

/* Close button (optional if you want an X close button in top-right) */
#create-user-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#create-user-modal .close:hover,
#create-user-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* ---------------ADMIN.HTML - TABLE ----------------

Styles specific to the admin user table */

.button-create {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Some padding */
    margin-bottom: 10px; /* Space below the button */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.button-create:hover {
    background-color: #45a049; /* Darker green on hover */
}


.admin-user-table {
    width: 100%; /* Make the table take up the full width */
    border-collapse: collapse; /* Ensure borders don't have spacing between them */
    margin: 20px 0; /* Add some margin above and below the table */
    background-color: #f9f9f9; /* Light background for the table */
}

.admin-user-table th, .admin-user-table td {
    padding: 12px; /* Add padding inside the cells */
    border: 1px solid #ddd; /* Add a light gray border around cells */
    text-align: left; /* Align text to the left */
}

.admin-user-table th {
    background-color: #464746; /* Green background for header */
    color: white; /* White text in header */
    font-weight: bold;
}

.admin-user-table tr {
    background-color: #ffffff65; /* White background for rows */
}

.admin-user-table tr:nth-child(even) {
    background-color: #f2f2f2a2; /* Light gray background for even rows */
}

.admin-user-table tr:hover {
    background-color: #ddd; /* Slightly darker background on hover */
}

.admin-user-table td .delete-button {
    background-color: #b83d3d; /* Green background for edit button */
    color: white; /* White text for edit button */
    border: none; /* Remove default button border */
    padding: 8px 12px; /* Add padding to button */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.admin-user-table td .delete-button:hover {
    background-color: #662420; /* Darker green on hover */
}

.admin-user-table td .edit-button {
    background-color: #3d3e3d; /* Green background for edit button */
    color: white; /* White text for edit button */
    border: none; /* Remove default button border */
    padding: 8px 12px; /* Add padding to button */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.admin-user-table td .edit-button:hover {
    background-color: #45a049; /* Darker green on hover */
}


/* -------------------------NEW GROUP ----- Modal background (the overlay) */
#reset-puck-modal, #add-puck-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal content box */
#reset-puck-modal form, #add-puck-modal form {
    background-color: #fff;
    margin: 10% auto; /* 10% from the top and center horizontally */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px; /* Could be more or less depending on your design */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}
/* Input styling inside the modal form */
#add-puck-modal form textarea,
#reset-puck-modal form select,
#add-puck-modal form input[type="text"],
#add-puck-modal form input[type="number"],
#add-puck-modal form input[type="checkbox"] {
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.edit-comment-input {
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Label styling */
#reset-puck-modal form label,
#add-puck-modal form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* Submit and cancel button styling */
#reset-puck-modal form button[type="submit"],
#reset-puck-modal form button[type="button"],
#add-puck-modal form button[type="submit"],
#add-puck-modal form button[type="button"] {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#reset-puck-modal form button[type="button"], 
#add-puck-modal form button[type="button"] {
    background-color: #f44336; /* Red for cancel */
}

/* Hover effects for buttons */
#reset-puck-modal form button:hover,
#add-puck-modal form button:hover {
    opacity: 0.9;
}

/* Close button (optional if you want an X close button in top-right) */
#add-puck-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#add-puck-modal .close:hover,
#add-puck-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.login-body{
    background-color: gray;
    background-image: url(media/hav.jpg);
    background-size: cover;           /* Ensures the image covers the entire background */
    background-repeat: no-repeat;     /* Prevents the image from repeating */
    background-position: center;      /* Centers the image in the background */
    min-height: 100vh;                /* Ensures the body takes up at least the full viewport height */
    width: 100%;                      /* Ensures the body takes up the full width */
    display: flex;
    justify-content: center;
    align-items: center; 
}

.login-box {
    background-color: white; /* White background */
    width: 350px; /* Set a fixed width for the login box */
    padding: 20px; /* Add padding inside the box */
    margin: auto; /* Center horizontally */
    position: absolute; /* Absolute positioning */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Shift the box back to perfect center */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); /* Add a subtle shadow to make it appear floating */
    border-radius: 10px; /* Optional: add rounded corners */
    text-align: center; /* Center text */
}

@media screen and (max-width: 640px) {
    .login-box{
        width: 300px;
    }
}

/* Style för user dropdown-menyn */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f99c;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 2px 0; /* Added padding to ensure even spacing */
    margin: 0;
}

.user-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    height: auto;
    margin: 0;
}

.user-dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Divider line between Admin and Log out */
.dropdown-divider {
    border-top: 1px solid #e0e0e0;
    margin: 0 0; /* Adjusts spacing above and below the line */
}

.user-dropdown:hover .user-dropdown-content {
    display: block;
}

.user-dropdown:hover .user-dropdown-btn {
    background-color: #8a8b8a;
}

/* Extra styling for admin link based on role */
.admin-link-disabled {
    color: rgb(104, 103, 103) !important;
    cursor: not-allowed;
}

.admin-link-enabled {
    color: black;
    cursor: pointer;
}



.logo-for-login{
    width: 300px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.auth-message{
    margin-bottom: 15px;
}

#update-password input[type="password"]{
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}


#login-form input[type="password"],
#login-form input[type="text"]{
    width: calc(100% - 20px); /* Full width minus padding */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#update-password button[type="submit"], #login-form button[type="submit"]{
    width: calc(100% ); /* Full width minus padding */
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: rgb(166, 137, 116);
}

#update-password button[type="submit"]{
    color: white;
}

#update-password button[type="submit"]:hover, #login-form button[type="submit"]:hover{
   background-color: rgba(166, 137, 116, 0.591);
   cursor: pointer;
}



@media screen and (min-width: 1220px ) {
    header {
        height: 360px;
    }
}
@media screen and (max-width: 640px ) {
        header {
            height: 1220px;
        }
}

@media screen and (max-width: 730px) {    
    .header-404{
        display: none;
    }


    .puck-button {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 12px;
    font-size: 35px;
    height: 60px;
    width: 60px;
    margin:3px;
    color:#080808;
    padding: 0;}

    .flex-inline-1 {
        width: 100%; /* or any other percentage, or a fixed value like 400px */
        margin: 0 auto; /* Center it horizontally if needed */
    }

    .inline-1{
        width: 48%;
        margin-right: 1%;
        display: inline-block;
        align-items: right;
    }
    
    .inline-2{
        width: 48%;
        margin-left: 1%;
        display: inline-block;
        align-items: right;
    }

    .inline-3, .inline-4 {
        width: 48.5%; /* Adjust the width so they fit on the same row */
        display: inline-block; /* Ensure they are displayed inline */
        vertical-align: top; /* Aligns the top of the elements */
        margin-right: 1%; /* Add a margin to create space between the two elements */
        box-sizing: border-box; /* Ensure padding and borders are included in the width */
    }
    

    .button-next, .button-dashboard,.button-waitlist{
        margin-bottom: 5px;
        font-size: 20px;
        width: auto;
        height: auto;
        padding: 8px;
        }

    .summary-buttons {
        text-align: center;
        margin: 5px;
        margin-top: 10px;
    }
}



    /*position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;/*
}

