body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    margin-bottom: 100px;
    background-color: #f4f4f4;
}

.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px;
    flex-direction: row-reverse;
    align-content: center;
    font-family: sans-serif;

}

/* Style the links inside the navigation bar */
.top-bar a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.top-bar a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.top-bar a.active {
  background-color: #04AA6D;
  color: white;

}

.sidebar-menu, .company-logo, .logout-icon {
    display: inline-block;
    color: white;
}

.company-logo {
    text-align: center;
    flex-grow: 1;
}

.logout-icon a {
    color: white;
    text-decoration: none;
}

.content {
    padding: 20px;
}

.info-box {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px;
    position: sticky;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.shifts {
    display: flex;
    flex-wrap: wrap;
}

.shift-box {
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 10px;
    padding: 10px;
    width: calc(33.333% - 40px);
    box-sizing: border-box;
    text-align: center;
}

.shift-box img {
    max-width: 100%;
    height: auto;
}

#covid-declaration-popup {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#start-shift-btn, #complete-shift-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

#start-shift-btn:hover, #complete-shift-btn:hover {
    background-color: #0056b3;
}
