body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* commented out to keep it static with the menu
nav {
     position: fixed; 
}
*/

.main {
    display: flex;
    flex-direction: row;
}

.content {
    overflow: auto;
    display: flex;
    flex-direction: column;
    margin: 20px auto;  /* 20px top/bottom and auto left/right */
    width: 85%;
}

.container {
    position: relative;
    height: 200px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./assets/img/shutterstock_2262683159.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    /* Adjust the blur radius as needed */
    z-index: 1;
}

.button-box {
    display: flex;
    flex-direction: row-reverse;
}

.menu-container {
    margin-top: 25px;
    overflow-y: auto;
    max-height: 80vh;
}

.menu {
    max-width: 250px
}

.filter-button {
    background-color: #74c5b5;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin: 5px;
}

.filter-button:hover {
    cursor: pointer;
    background-color: #66a69f;
}

#unselected-button {
    background-color: rgb(233, 233, 233);
    color: black;
    width: 206px;
    font-size: 14px;
}

#unselected-button:hover {
    cursor: pointer;
    background-color: rgb(197, 197, 197);
}

#selected-button {
    width: 206px;
    font-size: 14px;
}

.left-button:hover {
    cursor: pointer;
    background: #d5d5d5;
}

a {
    color: black;
    text-decoration: none;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mat-toolbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo-container img {
    height: 50px;
}

.menu-item {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    color: #333;
}

h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
    margin-left: 20px;
    color: #74c5b5;
}

.breadcrumb {
    font-size: 14px;
    margin: 20px 20px 0 20px;
    text-align: left;
}

.breadcrumb a {
    color: #007bff;
    /* Link color */
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #0056b3;
    /* Darker link color on hover */
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    /* Current page text color */
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.category {
    width: 200px;
    height: 200px;
    /* Fixed height to match the width */
    margin: 10px;
    padding: 0;
    /* Remove padding to allow the image to fill the container */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    /* Ensure the image does not overflow the container */
    position: relative;
}

.category:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container while maintaining aspect ratio */
    border-radius: 8px;
    /* Apply the border-radius to the image as well */
    position: absolute;
    top: 0;
    left: 0;
}

.category p {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background for text */
    color: white;
    padding: 5px;
    margin: 0;
    border-radius: 0 0 8px 8px;
    /* Match the border-radius of the container */
}

.start-shopping {
    display: inline-block;
    margin: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #74c5b5;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.start-shopping:hover {
    background-color: #66a69f;
}

.banner {
    background-image: url('/assets/img/shutterstock_2262683159.jpg');
    /* Replace with the correct path to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 20px 0;
    /* Optional: add some margin above and below the banner */
}

.banner-content {
    text-align: center;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    /* Add a slight shadow for better text readability */
    /*background-color: rgba(0, 0, 0, 0.5); /* Optional: add a semi-transparent background to make text stand out */
    padding: 20px;
    border-radius: 8px;
    /* Optional: rounded corners */
}

.banner h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.banner-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #74c5b5;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.banner-button:hover {
    background-color: #66a69f;
}

.section3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 85px;
}

.small-container {
    text-align: center;
    margin: 0 20px;
    height: auto;
}

.round-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.counter {
    font-size: 24px;
    margin-top: 10px;
    color: #FFFFFF;
}

.title {
    font-size: 18px;
    margin-top: 5px;
    color: #FFFFFF;
}

/* Modal Styling */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

/* Highlight selected role */
.role.selected {
    border: 2px solid #00796b;
    box-shadow: 0 0 10px rgba(0, 121, 107, 0.5);
    background-color: #f0f0f0;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #00796b;
}

.role-selection {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.role {
    text-align: center;
}

.role-image {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.role-image img {
    width: 100%;
    height: auto;
}

.input-field {
    margin-bottom: 15px;
}

.input-field label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.input-field select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #005b4f;
}

@media screen and (max-width: 1600px) {
    .left-menuBox {
        margin-top: 1%;
        margin-left: -1%;
        width: 500%;
    }
}