.maxify-request-service-status-wrapper {
    font-size: 16px;
    text-align: right !important;
    direction: rtl;
}

.maxify-request-service-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.maxify-request-service-status-wrapper input[type=submit] {
    background: #5bc0de;
    border: none;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    width: 15%;
    padding: var(--forms-fields-padding, 10px);
}

.maxify-request-service-status-wrapper select {
    background: #f9fafa;
    border: none;
    border-radius: 10px;
    color: var(--forms-fields-normal-color, #69727d);
    font-size: 14px;
    padding: var(--forms-fields-padding, 14px);
    text-align: right;
    width: 65%;
}

.maxify-request-service-status-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.maxify-request-service-status-table th,
.maxify-request-service-status-table td {
    border: 1px solid #a3a3a3 !important;
    padding: 10px !important;
    text-align: center;
}

.maxify-request-service-status-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .maxify-request-service-status {
        flex-direction: column;
    }

    .maxify-request-service-status-wrapper input[type=submit], .maxify-request-service-status-wrapper select {
        width: 100%;
    }

    .maxify-request-service-status-table td {
        font-size: 14px;
        padding: 8px;
    }
}