/* Styling Khusus Penyusunan Laporan dan Dokumen RTK Mikro 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 select, 
.detail-container button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.detail-container button {
    background-color: #005b99;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

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

/* Konten Laporan */
#reportContent {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f8ff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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