#mnps-container {
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    margin: 30px auto;
}

#mnps-container h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #23282d;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 12px;
}

#mnps-container .mnps-subtitle {
    margin: 0 0 20px;
    color: #58616a;
    font-size: 15px;
}

.mnps-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.mnps-box input {
    flex: 1;
    min-width: 220px;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.2s, background-color 0.2s;
}

.mnps-box input:focus {
    border-color: #0073aa;
    outline: none;
    background-color: #ffffff;
}

#mnps-btn {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s, opacity 0.2s;
}

#mnps-btn:hover {
    background-color: #00608e;
}

#mnps-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

#mnps-status {
    min-height: 22px;
    margin-bottom: 14px;
}

#mnps-status .mnps-status-message {
    margin: 0;
    font-size: 15px;
}

#mnps-status .is-info {
    color: #4b5563;
}

#mnps-status .is-success {
    color: #146c2e;
    font-weight: 600;
}

#mnps-status .is-error {
    color: #b42318;
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#mnps-table {
    width: 100%;
    min-width: 1350px;
    border-collapse: collapse;
    color: #444444;
}

#mnps-table th,
#mnps-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    font-size: 13px;
}

#mnps-table th {
    background-color: #f8f9fa;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 11px;
}

#mnps-table tr:nth-child(even) {
    background-color: #fdfdfd;
}

#mnps-table tr:hover {
    background-color: #f0f8ff;
}

@media (max-width: 640px) {
    .mnps-box input {
        min-width: 100%;
    }

    #mnps-btn {
        width: 100%;
    }

    #mnps-table {
        min-width: 1000px;
    }
}