/* Styling Khusus Analisis Persediaan Pegawai dan Neraca Pegawai di Detail Container */

.detail-container .container {
    max-width: 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.detail-container h1 {
    text-align: center;
    color: #005b99;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.detail-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-container form label {
    font-weight: bold;
    color: #005b99;
}

.detail-container form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}

.detail-container button {
    padding: 12px;
    background-color: #005b99;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
}

.detail-container button:hover {
    background-color: #007acc;
}

/* Hasil Analisis Persediaan dan Kesenjangan */
#inventoryResult {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f8ff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#inventoryResult p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

#inventoryResult strong {
    font-size: 1.2rem;
    color: #005b99;
}

#gapAnalysisMessage {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 10px;
    color: #005b99;
    text-align: center;
}
