
/* Reset dasar CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body umum */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    padding: 20px;
}

/* Header */
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Form */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

form label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #555;
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

/* Tabel Daftar Visi dan Misi */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #4CAF50;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}

table a {
    color: #007BFF;
    text-decoration: none;
}

table a:hover {
    text-decoration: underline;
}

/* Link dan Tombol */
a {
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
}

a:hover {
    text-decoration: underline;
}

/* Responsif untuk layar kecil */
@media screen and (max-width: 768px) {
    form {
        width: 90%;
    }

    table {
        font-size: 14px;
    }
}