body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    text-align: center;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

h2, h3 {
    color: #34495e;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 5px;
    margin-top: 20px;
}

#csvFileInput {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table, th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

#crStatus {
    font-weight: bold;
    margin-top: 5px;
}

#crStatus.consistent {
    color: #27ae60;
}

#crStatus.inconsistent {
    color: #e74c3c;
}

.result-section {
    margin-bottom: 25px;
    text-align: left;
}

/* ... kode CSS sebelumnya ... */



/* ... kode CSS sebelumnya ... */

#priorityVectorTable.consistent-ahp td:nth-child(6) {
    background-color: #e3f2fd; /* Biru muda untuk konsisten */
}

#priorityVectorTable.inconsistent-ahp td:nth-child(6) {
    background-color: #ffebee; /* Merah muda untuk tidak konsisten */
}
