/* Styling Khusus Penyusunan Program Kepegawaian 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, 
.detail-container h2 {
    text-align: center;
    color: #005b99;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.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;
}

/* Table Styling */
.detail-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.detail-container th, 
.detail-container td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.detail-container th {
    background-color: #007acc;
    color: white;
    font-weight: bold;
}
