.cards-container {
    display: flex;
    height: 40vh;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    gap: 1rem;
    position: fixed;
    bottom: 50px;
    right: 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 400ms, visibility 400ms;
    transition: opacity 400ms, visibility 400ms;
}
.card-actions {
    display: flex;
    background-color: #e9e9e9;
    height: auto;
    width: 100%;
    justify-items:center;
    padding: 10px;
    padding-right: 20px;
    justify-content: space-between;
    border-radius: 4px 4px 0px 0px;
    align-items: center;
}
.card {
    position: relative;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
    background: #fff;
    border-radius: 4px;
    font-family: "Helvetica", sans-serif;
    display: flex;
    flex-direction: column;
    height: 380px;
    width: 450px;
}
.card-body {
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
    padding: 10px;
}
#help_message {
    resize: none;
    border: none;
    height: auto;
    width: 100%;
    text-align: justify;
    white-space: normal;
    padding-right: 10px;
}
#close_request_help {
    font-size: 20px;
}
#send_attachments_label {
    margin-left: 5px;
    padding: 5px 0px 0px 0px;
}
#send_attachments_icon {
    margin-left: 5px;
    font-size: 18px;
}
#button_close {
    border: none;
    background-color: #e9e9e9;
}
.card_titles {
    display: flex;
    height: auto;
    justify-items: center;
}
#card_title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
}
#card_subtitle {
    font-size: 12px;
    margin: 0px;
}
#send_message {
    padding: 5px 20px 5px 20px;
    border-radius: 20px;
    background-color: #dad7d7;
    border: none;
    transition: 0.5s;
}
#send_message:hover {
    transform: translateY(-3px);
}
#send_attachments {
    border: none;
    background: none;
}
.open_send_message {
    color:#4a7485;
    text-decoration: underline #4a7485; 
    border: none; 
    font-weight: 700;
}
.card-fotter {
    display: flex;
    padding: 0px 10px 10px 10px;
}
#fileInfo {
    margin-left: 20px;
    padding: 5px 0px 0px 0px;
}
::-webkit-scrollbar-track {
    background-color: #dad7d7;
}
::-webkit-scrollbar {
    width: 6px;
    background: #dad7d7;
}
::-webkit-scrollbar-thumb {
    background: #aaaaaa;
}

input[type="file"] {
    display: none;
}
#send_attachments_label {
    width: 10px;
    cursor: pointer;
    transition: 0.5s;
}
#send_attachments_label:hover {
    transform: translateY(-3px);
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}