.card {
    opacity: 0;
    transform: translateY(20px);
    padding: 0px;
    border: 0px;
    width: 300px;
    text-align: center;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    position: absolute;
    bottom:80px;
    line-height: 23px;
    font-size: 14px;
    right: 0px;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    border-radius: 16px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.show-card {
    opacity: 1;
    transform: translateY(0px); /* Move to its original position */
}

.hide-card {
    display: none;
}

.card-header {
    width: 100%;
    border-radius: 16px 16px 0px 0px;
    background-color: rgb(255, 101, 80);
}

.header-content {
    border-radius: 16px 16px 0px 0px;
    padding: 0px 10px;
    height: 50px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.content {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
}

.profile-pic {
    height: 50px;
    width: 50px;
    min-width: 50px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    background: url(chat-makoons.png) center center / cover no-repeat;
    display: block !important;
}

.name {
    margin: 0px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    text-wrap: balance;
    text-align: left;
}

.position {
    margin: 0px;
    color: white;
    font-size: 14px;
    text-align: left;
    line-height: 1.3 !important;
}


.cross-icon {
    width: 25px;
    height: 25px;
    cursor: pointer;
    filter: invert(1) brightness(100);
}

.card-body {
    padding: 15px;
}

.current-time {
    margin: 0px 0px 15px;
    color: rgb(149, 157, 169);
}

.message {
    display: flex;
    gap: 10px;
    color: rgb(0, 0, 0);
}

.message-avatar {
    height: 35px;
    width: 35px;
    min-width: 35px;
    border-radius: 50%;
    background: url(chat-makoons.png) center center / cover no-repeat;
    display: block !important;
}

.message-text {
    background: rgba(44, 120, 255, 0.2);
    max-height: 20vh;
    padding: 0;
    border-radius: 2px 20px 20px;
}

.message-text-div {
    padding: 0px 16px;
    line-height: 20px;
    white-space: pre-wrap;
    overflow-y: auto;
    height: 100%;
    box-sizing: border-box;
    text-align: left;
}

.text-span {
    line-height: 1;
    margin: 0;
    text-wrap: balance;
    white-space: pre-wrap;
    text-align: left;
    font-size: 14px;
}

.start-chat-title {
    font-weight: bold;
    margin: 25px 0px 5px;
    color: rgb(0, 0, 0) !important;
}

.start-chat {
    margin-bottom: 0px;
}

.chat-options {
    display: flex;
    padding: 0px;
    -webkit-box-pack: center;
    justify-content: center;
}

.chat-option {
    display: flex;
    margin: 7px;
    position: relative;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.chat-option:hover .chat-note{
 display: block;
}

.chat-note {
    position: absolute;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    bottom: -38px;
    z-index: 1000;
    padding: 7px 10px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12.6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    color: rgb(51, 51, 51);
    background: white;
    box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
    white-space: nowrap;
    pointer-events: none;
    transform-origin: right center;
    line-height: 1.1 !important;
}



.option-icon {
    order: 2;
    position: relative;
}

.option-icon-inner-div {
    display:flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    order: 2;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s;
    position: relative;
    z-index: 200;
    text-decoration: none !important;
}