.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.contact-form-wrapper a {
    color: blue;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 22px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    margin: 50px 10px;
    border: 1px solid #ddd;
}

.contact-form-container h2 {
    text-align: center;
    margin: 10px 0;
    font-size: 28px;
}

.contact-info {
    text-align: right;
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-info p:last-of-type {
    font-weight: bold;
    color: #024cff;
    font-size: 18px;
}

.contact-info hr {
    margin-top: 10px;
    border: none;
    border-top: 1px solid #ddd;
    width: 100%;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}

.contact-form-container form input[type="email"] {
    margin-bottom: -10px;
    text-align: left;
}

.contact-form-container form input,
.contact-form-container form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    background: #f0f2f5;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
}


.contact-form-container form textarea {
    resize: none;
    background: #f0f2f5;
    border-radius: 10px;
    font-size: 16px;
    padding: 15px;
    margin-top: 10px; 
}

.contact-form-container form input[type="submit"] {
    background-color: #0244ff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 50px;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
}

.contact-form-container form input[type="submit"]:hover {
    background-color: #0066ff;
}

#form-messages {
    margin-top: 10px;
    text-align: center;
}


/* chat box contact admin dashboard */
#contact-chat {
    background: #0076ff;
    padding: 20px;
    border-radius: 20px;
    max-width: 100%;
    margin: 20px auto;
    height: 600px;
    overflow-y: auto;
}

.contact-chat-message {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    overflow-x: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.contact-chat-message.unread {
    background: #ffeb3b;
}

.contact-chat-message .delete-message {
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    color: #ff0000;
    font-size: 20px;
    cursor: pointer;
}

.contact-chat-message .select-message {
    margin: 3px 10px 10px 5px;
    width: 18px;
    height: 18px;
}

.contact-chat-message-content {
    flex-grow: 1;
}

.bulk-actions {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.bulk-actions .button {
    margin-right: 5px;
}

.contact-chat-message strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-chat-message span {
    font-size: 16px;
}

.chat-time {
    font-size: 14px !important;
    color: #999;
    display: block;
    margin-top: 10px;
}


@-moz-document url-prefix() {
    .contact-form-container form input,
    .contact-form-container form textarea {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        background: #f0f2f5;
        border-radius: 10px;
    }
    
    .contact-form-container form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}