:root {
    --background: #d9e4e6;
    --secondary: #fbfbfb;
    --btn: #3C86D1;
}

html {
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background-color: var(--background);
    background: url(../Images/bg.png) no-repeat;
}

.white-text {
    color: #ffff;
    margin-block-start: 0;
    margin-block-end: 0;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.align-items-flex-end {
    align-items: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.flex-direction-row {
    flex-direction: row;
}

.align-items {
    align-items: center;
}

.justify-content-around {
    justify-content: space-around;
}

.w-50 {
    width: 50%;
}

.h-rem-2 {
    height: 2rem;
}

.h-rem-3 {
    height: 3rem;
}

.w-100 {
    width: 100%;
}

.w-60 {
    width: 60%;
}

.w-30 {
    width: 30%;
}

.mw-700 {
    max-width: 700px;
}

.m-0 {
    margin: 0;
}

.m-10 {
    margin: 0px 10px 0 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.pb-100 {
    padding-bottom: 100px;
}


.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.p-10 {
    padding: 10px;
}

.p-075 {
    padding: 0.75rem;
}

.text-small {
    font-size: 10px;
}

.secondary-background {
    background-color: var(--secondary);
}

.main-background {
    background-color: var(--background);
}

.content {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #9a9a9a;
    font-family: 'Indie Flower', cursive;
    width: 100%;
}

    .content h1 {
        font-size: 1.75rem;
        margin: 0;
    }

    .content p {
        margin: 0;
    }

/*
HOME PAGE*/

.index-page {
    display: flex;
    margin: 0;
    flex-direction: column;
    align-items: center;
    background-position: top center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}


    .index-page .wrapper {
    }



.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .wrapper h2 {
        color: #4f5151;
    }


.app-icon {
    height: 4.5rem;
    cursor: pointer;
}

.toggle-button {
    width: 100%;
    cursor: pointer;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    height: 109%;
}

.search-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 19px;
    padding: 5px;
    background: white;
    overflow: hidden;
    width: 100%;
}

    .search-container input {
        border: none;
        outline: none;
        padding: 5px;
    }

    .search-container .icon {
        color: #888;
        margin-right: 5px;
        font-size: 18px;
    }





.search-minimized {
    padding: 0.5rem; /* Reduced padding for minimized state */
    max-width: 200px; /* Smaller width for minimized view */
    height: 17px; /* Fixed height */
    overflow: hidden; /* Hide overflowing content */
    cursor: pointer;
    bottom: 3rem;
    position: fixed;
}

    .search-minimized .index-form {
        display: none; /* Hide the inner form when minimized */
    }

    .search-minimized::after {
        color: #555;
        font-size: 0.9rem;
        margin-left: 10px;
        display: block;
        text-align: center;
    }


.index-Container {
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 0px 54px 0 rgba(0, 0, 0, 0.3);
    background-color: var(--secondary);
    width: 100%;
    max-width: 600px;
}

    .index-Container h2 {
        margin: 0;
    }

.register-container {
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 0px 54px 0 rgba(0, 0, 0, 0.3);
    background-color: var(--secondary);
    width: 100%;
    max-width: 600px;
}


    .register-container h2 {
        margin: 0;
    }

.index-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    display: flex;
    flex-direction: column;

}

    .input-group select {
        text-align: center; /* Centrerar texten i dropdown */
        text-align-last: center; /* Centrerar den valda texten i dropdowns i moderna webbläsare */
        width: 100%; /* Gör dropdown-bredden 100% */
        padding: 10px;
        box-sizing: border-box;
    }

    .input-group date {
        text-align: center; /* Centrerar texten i dropdown */
        text-align-last: center; /* Centrerar den valda texten i dropdowns i moderna webbläsare */
        width: 100%; /* Gör dropdown-bredden 100% */
        padding: 10px;
        box-sizing: border-box;
    }

    .input-group label {
        margin-bottom: 5px;
        font-weight: bold;
    }

    .input-group input,
    .input-group select {
        padding: 10px;
        border-radius: 19px;
        font-size: 1rem;
    }

        .input-group input:focus,
        .input-group select:focus {
            border-color: #007bff;
            outline: none;
        }

input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add your own styles */
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    border-radius: 19px;
    background-color: white;
    color: black;
}

#from-date {
    display: flex !important;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center !important;
}

#to-date {
    display: flex !important;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center !important;
}

button {
    padding: 10px;
    background-color: var(--btn);
    color: white;
    border: none;
    border-radius: 15px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

    button:hover {
        background-color: #0056b3;
    }



/*RESULT PAGE*/

.result-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px
}

    .result-wrapper .index-Container {
        position: fixed;
        bottom: 5rem;
        top: unset;
        max-width: 325px;
    }

.results-page {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}


.result-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 10px;
    height: auto;
}

.result-card {
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 480px;
    background-color: #d8ba88;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    overflow: hidden;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    max-width: 400px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
    width: 80vw;
    height: 85px;
    background-color: var(--btn);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-size: cover; /* Ensure the profile picture covers the left side */
    background-repeat: no-repeat; /* Prevents the background from repeating */
    background-position: top center; /* Aligns the background image to the left */
    transition: transform 0.2s ease-in-out;
}


.result-card-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1rem;
}

.advertisement-notification {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
    font-size: 12px;
}

.skill-logo {
    height: 3rem;
}

.result-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.result-card .profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.result-card-text {
    text-align: left;
    color: white;
    margin-left: 10px;
}

.result-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    line-height: 1.2;
    color: white;
}

.result-card .card-content {
    padding-top: 10px;
    color: white;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.ad-card-picture {
    cursor: pointer;
    max-height: 125px;
    border-radius: 10px;
}


/*PROFILE PAGE*/
/* Basstilar för profildiv */


.back-link {
    width: 100%;
    color: black;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
}

/*.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}*/

.profile-skills {
    border: 1px solid;
    padding: 15px;
}

.profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-skills li {
    letter-spacing: -1px;
}

.profile-pic {
    height: 20rem;
    border-radius: 10px;
    object-fit: cover;
}

.about-section {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    width: 600px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.profile-about {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.profile-skills {
    text-align: left;
    margin-bottom: 20px;
}

.skills-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.skills-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.skill-item {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    background-color: #e6e6e6;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.custom-button {
    font-size: 14px;
    padding: 10px 20px;
    background-color: var(--btn);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 10px;
    align-items: center;
}

    .custom-button:hover {
        background-color: #3C86D1;
    }

.company-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

    .company-info a {
        color: black;
        text-decoration: underline;
        cursor: pointer;
    }

.about-section h2 {
    margin: 10px 0;
}


.contact-info {
    text-align: center;
    max-width: 600px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

    .contact-form input {
        height: 2rem;
        margin-top: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-form textarea {
        margin-top: 0.5rem;
        margin-bottom: 0.75rem;
    }


.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.overflow-scroll {
    overflow: scroll;
}

.align-items-unset {
    align-items: unset !important;
}

.fw-100 {
    font-weight: 100;
}

.policy-link {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
    display: inline;
}

/*COMPANY PAGE*/
.company-header {
    text-align: center;
    margin: 20px 0;
}


.company-name {
    font-size: 24px;
    margin: 10px 0;
}

.company-description {
    padding: 0 15px;
    font-size: 16px;
    text-align: center;
}

.section-title {
    font-size: 20px;
    margin: 20px 15px 10px;
}

.employee-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.employee-card {
    cursor: pointer;
    box-shadow: 0 0px 54px 0 rgba(0, 0, 0, 0.3);
    width: 122px;
    height: 104px;
    margin: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease-in-out;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7), transparent), url('@item.ProfilePicture');
}

    .employee-card:hover {
        transform: scale(1.05); /* Light zoom effect on hover */
    }

.employee-image {
    max-width: 80px;
    border-radius: 50%;
}

.employee-name {
    font-size: 14px;
}

.or {
    color: #4f5151;
}

/*REGISTER WORKER*/


.register-form {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: var(--secondary);
    border-radius: 10px;
    text-align: unset;
    padding: 15px;
    max-width: 90%;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #eee;
    border-radius: 3px;
    cursor: pointer;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Indie Flower', cursive;
    color: #9a9a9a;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

.form-control {
    width: -webkit-fill-available;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
}

    .btn:hover {
        background-color: #0056b3;
    }

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #a47847;
    border-radius: 3px;
    cursor: pointer;
}

.selected-tag {
    background-color: #be9962;
    color: white;
}

.main-tag {
    height: 27px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-tags {
    margin-bottom: 10px
}

.selected-tags li {
    height: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.selected-tags button {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    margin: 0;
    width: 30%;
}

.selected-tags button {
    text-decoration: underline;
}

.top-right-element {
    background-color: var(--secondary);
    position: fixed;
    top: 10px;
    right: 10px;
    width: 30px; /* Initial size of the bubble */
    height: 30px; /* Initial size of the bubble */
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}


@media (min-width: 1200px) {
    .top-right-element {
        right: calc((100vw - 1200px) / 2 + 20px); /* Centers within max width */
    }

    .wrapper {
    }
}

.top-right-element.expanded {
    width: 100px;
    height: 100px;
    background-image: none;
}

/* .top-right-element.authenticated {
        background-image: url('/Images/profile.png');
    }*/

.top-right-element.authenticated.expanded {
    background-image: none;
}

.top-right-element.authenticated:hover {
    width: 65px;
    height: 65px;
}

.top-right-element.authenticated.expanded:hover {
    width: 100px;
    height: 100px;
}

.top-right-element.unauthenticated {
    background-image: url('/Images/login.png');
}

    .top-right-element.unauthenticated:hover {
        width: 65px;
        height: 65px;
    }



.top-right-element .buttons {
    display: none;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box; /* Prevent content from overflowing */
}

.top-right-element.expanded .buttons {
    display: flex; /* Show buttons on hover */
}

.top-right-element p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden; /* Prevent text overflow */
    text-overflow: ellipsis; /* Adds ellipsis for text overflow */
}

.top-right-element button {
    border: none;
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 100%; /* Ensure buttons take full width */
    box-sizing: border-box;
}

    .top-right-element button:hover {
        background-color: #0056b3; /* Darker shade on hover */
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulsating {
    animation: pulse 1s infinite;
}

fieldset {
    border: none;
    padding-inline: 0;
    max-width: 90%;
    display: contents;
}

.linkedin-icon {
    height: 5rem;
    cursor: pointer;
}

.nocompanyinvoice-icon {
    height: 2.5rem;
    cursor: pointer;
}

button:disabled {
    opacity: 50%;
}

.knowledge-list {
    display: flex;
    flex-direction: column;
    max-height: 50vh;
    overflow: auto;
}

.status-circle {
    margin-right: 10px;
    margin-bottom: 5px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
}

    .status-circle.active {
        background-color: green;
    }

    .status-circle.inactive {
        background-color: red;
    }

.info-icon {
    font-size: 1.2em;
    color: #007bff;
    cursor: pointer;
    right: 2rem;
}

.tooltip {
    max-width: 300px;
    position: absolute;
    margin-bottom: 60px;
    background-color: #333;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.info-icon:hover .tooltip {
    display: block;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.about-us {
    background-color: var(--secondary);
    color: #332e2e;
    max-width: 600px;
}

.about-banner {
    width: 100%;
    background-size: cover;
    padding: 100px 0px;
    background-position: center;
    background-repeat: no-repeat;
}


.center-image-top {
    background-position-y: calc(-9vh)  !important;
}

.about-us h2 {
    width: 100%;
    color: #9a9a9a;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Indie Flower', cursive;
    text-align: left;
}

.about-us p {
    margin: 0 0 3rem 0;
}

.about-us button {
    margin: 0;
}


.intro {
    background-image: url('/Images/about-page/couch.png');
}

.search-functionality {
    background-image: url('/Images/about-page/searchsuccess.png');
}

.display-knowledge {
    background-image: url('/Images/about-page/holdingbox.png');
}

.no-register {
    background-image: url('/Images/Painter.png');
}

.easy-and-safe {
    background-image: url('/Images/about-page/handpicking.png');
}

.add-to-home-screen {
    display: none;
}

.blurred-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}


.register-img {
    object-fit: cover;
    width: 30%;
    border-radius: 5px 0 0 5px;
}

.prompt-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 10%;
}

    .prompt-container h2 {
        margin-bottom: 10px;
    }

    .prompt-container a {
        color: #007bff;
        text-decoration: none;
        cursor: pointer;
    }

        .prompt-container a:hover {
            text-decoration: underline;
        }

.iphone-instructions {
    margin-top: 15px;
    text-align: left;
}

    .iphone-instructions ol {
        padding-left: 20px;
    }

.button-group {
    gap: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

button:hover {
    background: #0056b3;
}

button:active {
    background: #004080;
}


.h2-right {
    width: 87%;
    text-align: end;
}

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Dark overlay */
    z-index: 999; /* Ensure it is above other content */
}

.fullscreen-dropdown {
    position: fixed;
    top: 115px;
    bottom: 115px;
    z-index: 10000;
    max-width: 380px;
    width: 60%;
    background-color: white;
    box-shadow: -4px 0px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 12px 12px 12px 12px;
}

.multiselect-dropdown {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.dropdown-header {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    padding: 5px;
}

    .dropdown-item input {
        margin-right: 10px;
    }


/*NAVMENU*/

.nav-menu {
    font-weight: bold;
    position: sticky;
    top: 0px;
    left: 0;
    z-index: 1000;
    background-color: white;
    padding: 6px 0 6px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    font-family: 'Arial', sans-serif;
    z-index: 10000;
}

.nav-mobile-banner {
    display: none;
}

.nav-wrapper {
    position: relative;
    max-width: 1200px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-menu .nav-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 7px;
}

/* Nav Menu Items */
.nav-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

    .nav-menu ul li a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        transition: color 0.3s;
    }

        .nav-menu ul li a:hover {
            color: #007bff; /* Highlight color on hover */
        }

/* Nav Menu Items */
.nav-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

    .nav-menu ul li a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        transition: color 0.3s;
    }

        .nav-menu ul li a:hover {
            color: #007bff; /* Highlight color on hover */
        }

.nav-authenticated {
    cursor: pointer;
    border-radius: 5px;
    background-color: #9a9a9a;
    padding: 1px 6px 1px 6px;
}



/*ads*/
.ad-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7b7b7b;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    height: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    animation: slideIn 1s ease-out;
}

.ad-content {
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}


.minimize-homecomponent {
    display: flex;
}





.menu-icon {
    height: 25px;
    width: 25px;
}

/* Mobile responsiveness */
@media only screen and (max-width: 600px) {



    .center-image-top {
        background-position-y: unset !important;
    }

    .contact-form {
        padding-bottom: 50px;
    }

    .back-link {
        width: 90%;
    }

    .register-form {
        max-width: 80%;
    }

    .index-page {
        background-size:;
        position: absolute;
        z-index: -1;
        object-fit: cover;
        left: 0;
        height: auto;
    }


    .minimize-homecomponent {
        display: none;
    }

    .ad-footer {
        display: none;
    }


    .about-section {
        max-width: 300px
    }

    .nav-menu {
        bottom: 0;
        top: auto;
        background-color: rgba(255, 255, 255, 1);
        border-top: 1px solid #ddd;
        position: fixed;
    }


        .nav-menu ul {
            flex-direction: row;
            justify-content: center;
            gap: 15px;
        }

    .nav-mobile-banner {
        display: flex !important;
        background: white;
        position: sticky;
        left: 0;
        top: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 3px;
        z-index: 1000;
    }

    .nav-content {
        padding: 0 5px 0 10px;
        gap: 5px;
    }

    .app-icon {
        height: 3.5rem;
    }

    .profile-pic {
        height: 12rem;
        width: 12rem;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
        padding-bottom: 100px;
    }

    .custom-button {
        width: 100%;
        padding: 12px;
        font-size: 12px;
    }

    .fullscreen-dropdown {
        max-width: 220px;
        width: 85vw;
    }

    .contact-info {
        text-align: center;
        max-width: 400px;
    }

    .index-Container {
        top: auto;
        bottom: 4rem;
        max-height: 90%;
       
    }

    .index-result {
        position:fixed;
    }

    .index-form {
        max-height: 90%;
    }

    .result-card {
        max-width: 400px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        width: 65vw;
    }

    .result-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        bottom: 4rem;
    }

    .icon-container {
        padding: 15px;
    }


    .add-to-home-screen {
        display: flex;
        width: 4.5rem;
        height: 4.5rem;
        transition: all 0.3s ease-in-out;
        position: fixed;
        bottom: 3rem;
        left: 10px;
        background-color: var(--secondary);
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        font-family: 'Indie Flower', cursive;
        font-size: 12px;
        font-weight: bold;
    }



    .input-group label {
        font-size: 0.9rem;
    }

    .input-group input,
    .input-group select {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
        width: 100%;
    }

    .content {
        display: none;
    }


        .content p {
            margin: 0;
            font-size: 0.9rem;
        }

        .content h1 {
            font-size: 1.5rem;
        }

    .company-wrapper {
        max-width: 400px;
    }
}
