    /* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Left Navigation Bar */
.navbar {
    width: 20%;
    height: 100vh;
    background-color: rgb(55, 63, 81);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    float: left;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar .top-section {
    flex-grow: 1;
}

.navbar .links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar .links li {
    margin: 10px 0;
}

.navbar .links li a {
    display: block;
    width: 100%;
    padding: 5px 20px;
    background-color: lightgray;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-size: small;
}

/* Right Content Area */
.content {
    width: 80%;
    background-color: lightgray;
    float: left;
    position: relative;
    box-sizing: border-box;
    padding: 20px;
}

/* Rectangles Above Banner */
.stats {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 10px; /* Adjusted margin to close the gap */
    flex-wrap: nowrap; /* Ensure the boxes do not wrap to the next line */
}

.stats .stat-box {
    background-color: darkgray;
    color: white;
    padding: 20px;
    text-align: center;
    width: 150px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* Add drop shadow */
}

.stats .stat-box h3 {
    margin: 0;
    font-size: 1.5em;
}

.stats .stat-box p {
    margin: 10px 0 0;
    font-size: 1.5em;
}
/* Banner Styles */
.content .banner {
    width: 100%;
    background-color: darkgray;
    color: lightgray;
    padding: 20px;
    margin-top: 10px; /* Set top margin to 10px */
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* Add drop shadow */
}

.content .banner ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.content .banner ul li a {
    text-decoration: none;
    padding: 10px;
}

/* Footer Styles */
.content .footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    text-align: center;
    width: 100px;
}

.content .footer img {
    max-width: 100px;
}

.content .footer .version {
    margin-top: 5px;
    color: gray;
    text-align: center;
}
.welcome {
    color: #edc400;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    width: 100%;
}
.worker-pic {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-right: 10px;
}
.worker-info, .company-info, .contact-info, .actions {
    display: flex;
    flex-direction: column;
}
.worker-info span, .company-info span, .contact-info span {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em;
}
.pill {
    background-color: #545454;
color: white;
justify-content: center;
text-transform: uppercase;
    border-radius: 10px;
    padding: 2px 5px;
    display: inline-flex;
    align-items: center;
}
.pill .icon {
    margin-right: 5px;
}
.actions {
    display: flex;
flex-direction: row;
    gap: 10px;
}
.actions .icon {
    cursor: pointer;
}
.worker-info .name, .company-info .name, .contact-info .phone {
        font-weight: bold;
        font-size: 1.1em;
    }
.technician-image-container {
  position: relative;
  display: inline-block;
}

.offshift-banner {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
  padding: 5px;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
}
