/**
 * CRM (Customer Relation Management) style.
 *
 * For the CRM UI.
 *
 * @author  Metaverses Nation Agency <mail@metaversesnation.com>
 */
 
#customer-service-button {
    padding: 10px;
    border-radius: 12px;
    font-size: 14px !important;
}

#customer-service-menu {
    width: 90%;
    max-width: 380px;
    height: 80%;
    bottom: 66px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
    box-sizing: border-box;
}

#customer-service-menu-header {
    padding: 16px;
    height: 35px;
    min-height: 35px;
    border-radius: 12px 12px 0 0;
    background-color: red;
    color: white;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
}

#customer-service-menu-header-title {
    font-size: 25px;
}

#customer-service-menu-button-icon {
    cursor: pointer;
}



#customer-service-menu-customer-services-page {
    display: contents;
}

#customer-service-menu-customer-services-list-title {
    margin: 16px 0;
    font-size: 25px;
}

#customer-service-menu-customer-services-list-list-div {
    padding: 0 8px;
    overflow-y: auto;
    height: 100%;
}

#customer-service-menu-customer-services-list-no-cs-found {
    font-size: 17px;
}

.customer-services-list-item {
    height: 70px;
    
    padding: 5px;
    margin-bottom: 12px;
    
    border: 3px solid red;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
    box-sizing: border-box;
    
    cursor: pointer;
}

.customer-service-list-item-image {
    aspect-ratio: 1/1;
    height: 100%;
    
    border-radius: 100%;
    border: 3px solid red;
    box-sizing: border-box;
}

.customer-service-list-item-name {
    display: block;
    width: 100%;
    font-size: 24px;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#customer-service-menu-messages-page {
    display: contents;
}

#customer-service-menu-messages-list {
    height: 100%;
    padding: 8px;
    padding-top: 86px;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
}

.customer-service-menu-cs-message, .customer-service-menu-user-message {
    width: 70%;
    border-radius: 16px;
    
    padding: 8px;
    margin-bottom: 12px;
    text-align: start;
    box-sizing: border-box;
}

.customer-service-menu-user-message {
    border: 3px solid black;
    margin-left: auto;
}

.customer-service-menu-cs-message {
    border: 3px solid red;
    margin-right: auto;
}

.customer-service-menu-message-text {
    overflow-wrap: anywhere;
}

.customer-service-menu-message-date {
    text-align: end;
    color: gray;
}

.customer-service-menu-message-image-attachment {
    max-width: 100%;
}



#customer-service-menu-message-form {
    height: 64px;
    padding: 5px;
    box-sizing: border-box;
}

#customer-service-menu-message-form button {
    aspect-ratio: 1/1;
    height: 80%;
    padding: 4px;
    
    background-color: white;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-radius: 8px;
    
    transition: background-color 0.1s;
}

#customer-service-menu-message-form button:hover {
    background-color: lightgray;
}

#customer-service-menu-message-form button img {
    width: 100%;
    height: 100%;
}

#customer-service-menu-message-form textarea {
    width: 100%;
    padding: 4px;
    font-size: 16px;
    
    box-sizing: border-box;
    resize: none;
}

#customer-service-menu-message-rating-div {
    width: 100%;
    height: 100%;
}

.customer-service-menu-message-rating {
    aspect-ratio: 1/1;
    height: 100%;
    width: auto;
    margin: 0 4px;
}

#customer-service-menu-message-rating-send-button {
    margin-left: 16px;
}


#customer-service-menu-messages-customer-service-person-div, #customer-service-menu-waiting-for-customer-div {
    transform: translate(-50%,0);
    
    position: absolute;
    top: 78px;
    left: 50%;
    
    background-color: white;
    border: 3px solid red;
    border-radius: 16px;
    height: 64px;
    width: calc(100% - 16px);
    box-sizing: border-box;
}

#customer-service-menu-messages-person-image {
    border: 2px solid red;
    border-radius: 100%;
    
    aspect-ratio: 1/1;
    height: 100%;
    box-sizing: border-box;
    
}

#customer-service-menu-messages-person-name-span {
    font-size: 20px;
    
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



#customer-service-menu-menu-div {
    position: absolute;
    z-index: 10;
    
    width: 70%;
    top: 70px;
    right: 8px;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid black;
    
    background-color: white;
    box-sizing: border-box;
}

.customer-service-menu-menu-button {
    cursor: pointer;
    height: 32px;
    width: 100%;
    margin-bottom: 8px;
}

.customer-service-menu-menu-button img {
    aspect-ratio: 1/1;
    height: 100%;
}


#customer-service-menu-login-page {
    width: 100%;
}

#customer-service-menu-login-page input {
    width: 90%;
    height: 40px;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

#customer-service-menu-login-page label {
    width: 90%;
    font-size: 16px;
    padding-left: 8px;
    box-sizing: border-box;
}

#customer-service-menu-login-page button {
    font-size: 16px;
    padding: 8px 16px;
    box-shadow: 0 1px 6px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 24%);
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
}


#customer-service-menu-waiting-for-customer-div p {
    font-size: 20px;
    min-width: min-content;
}

#customer-service-menu-messages-person-name-input {
    height: 100%;
    font-size: 20px;
    width: inherit;
    border: none;
    outline: none;
}

#customer-service-menu-messages-person-name-input-div {
    width: 95%;
}

#customer-service-menu-attachment-display-image {
    max-height: 200px;
    max-width: 100%;
}

#customer-service-menu-customer-services-list-pagination-div {
    margin-bottom: 10px;
}


#customer-service-menu-history-page {
    background: white;
    position: absolute;
    top: 86px;
    left: 16px;
    border: 2px solid black;
    width: calc( 100% - 32px );
    height: calc( 100% - 102px );
    box-sizing: border-box;
    z-index: 2;
}

#customer-service-menu-history-list-div {
    text-align: center;
    overflow: auto;
}

#customer-service-menu-history-back-button, #customer-service-menu-history-close-button {
    position: absolute;
    top: 20px;
    cursor: pointer;
}

#customer-service-menu-history-back-button {
    left: 20px;
}

#customer-service-menu-history-close-button {
    right: 20px;
}

#customer-service-menu-history-messages-list {
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
}

.customer-service-menu-history-list-item {
    background: white;
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    border: 2px solid black;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
}

.customer-service-menu-history-list-item-detail {
    font-size: 14px;
    text-align: start;
}