.application-info-ul li {
    /* justify-content: center;
    display: flex;
    gap: 1rem; */
    /* margin-bottom: 1rem; */
    /* align-items: center; */
}

.application-page .card-title {
    color: var(--primary-color);
}

.application-info-ul {
    list-style: none;
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.application-page .card {
    margin-bottom: 1rem;
    padding: 0;
}

#application-info-content {
    display: flex;
    flex-direction: row;
    align-content: start;
    /* gap: 1rem; */
}

.application-page .card-div .card,
.application-page .card-div .card-body {
    max-height: 100%;
    height: 100%;
}

.application-page .card-body {
    overflow-y: auto;
}

.application-page .card-div {
    max-height: 300px;
    min-height: 300px;
    margin-bottom: 1rem;
    /* padding: 0; */
}

.application-page .files ul {
    list-style: none;
}

.application-page .upload-files-list .file-item {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.files ul {
    padding: 0;
}

.application-page .upload-files-list .file-item label {
    width: 100%;
    height: 100%;
    padding: 1rem;
    cursor: pointer;
}

.application-page .upload-files-list .file-item input {
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 2;
    top: 0;
    cursor: pointer;
}

.application-page .incoming-files-list .file-item {
    cursor: pointer;
}


/* NOTES */

.chat-notes #notes-content {
    height: 80%;
    overflow-y: auto;
    padding: 0.5rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.chat-notes .note-input-div {
    position: relative;
}

.chat-notes .note-input-div .message-send-btn i {
    display: block;
}

.chat-notes .note-input-div .message-send-btn {
    position: absolute;
    right: 5px;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

.chat-notes .note-input-div input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.chat-notes #notes-content .support .note-body {
    /* text-align: left; */
    float: left;
    background-color: var(--primary-hover-color);
}

.chat-notes #notes-content .support .conversation-date {
    color: var(--primary-color);
}

.chat-notes #notes-content .agent .note-body {
    /* text-align: right; */
    float: right;
    background-color: var(--primary-color);
}

.chat-notes #notes-content .agent .conversation-date {
    color: var(--primary-hover-color);
}

.chat-notes #notes-content .note-div .note-body {
    text-align: left;
    border-radius: var(--border-radius);
    width: fit-content;
    padding: 0.5rem;
    color: white;
    max-width: 100%;
}

.chat-notes #notes-content .conversation-date {
    font-size: 0.8rem;
}

.admission-card {
    width: 97%;
    margin: auto;
}

.application-status-update .card-body {
    display: flex;
    justify-content: center;
    align-items: start;
    align-content: start;
    flex-wrap: wrap;
    gap: 1%;
    /* width: 70%; */
}
.application-status-update .history-update,
.application-status-update .history-update-header
{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    gap: 1%;
}
.application-status-update .history-status,
.application-status-update .history-date {
    flex: 0 0 49%;
    width: 49%;
    margin-top: 1rem;
}