.invitation .tooltip {
    display: none;
}

.invitation:hover {
    cursor: pointer;
} 

.invitation:hover .tooltip {
    background: #323232;
    color: rgb(225, 225, 225);
    padding: 0.5rem;
    border-radius: 4px;
    transition: 0.4s;
    position: absolute;
    display: inline-block;
    font-size: 13px;    
}

.invitation-container {
    min-height: 90vh;
}

.rendezvous {
    height: 80vh;
    overflow-y: scroll;
    width: 300px;
    max-width: 100%;
}

.demand-container {
    background: white;
    box-shadow: 0.5px 0.3px 5px #42424225;
    padding: 1rem;
}

.invitation-container .demand-container {
    width: 300px;
    max-width: 100%;
}

.inv2 {
    width: 300px;
}

.section-entreprise {
    width: 700px;
    max-width: 100%;
    padding: 1rem;
}

.header {
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #efefef;
}

.header h2 {
    text-transform: capitalize;
    font-size: 18px;
    margin-top: 1rem;
    color: #777777;
    font-weight: normal;
}

body {
    background: #fafafa;
}

.header .logo-container {
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 32px;
    background: white;
    box-shadow: 1px 0.5px 10px #00000025;
}

.welcome-container-page {
    height: 6rem;
}

.header .logo-container img {
    width: 95%;
}

.sticky {
    position: sticky;
    top: 8rem;
    left: 0rem;
}

@media (max-width: 1160px) {
    .invitation-container {
        position: static;
        width: 100%;
    }

    .section-entreprise {
        margin-top: 2rem;
        width: 100%;
    }

    .rendezvous {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .user-name {
        display: none;
    }   
}

