/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    background: #f4f6f8;
    padding: 30px;
    color: #333;
}

/* JUDUL */
h2, h3 {
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* LINK */
a {
    text-decoration: none;
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}

/* CONTAINER */
.container {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* NAV ADMIN */
.nav {
    margin-bottom: 20px;
}

.nav a {
    margin-right: 15px;
    font-weight: bold;
}

/* TABEL */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

table th {
    background: #0066cc;
    color: #fff;
    padding: 10px;
    text-align: left;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table tr:hover {
    background: #f1f1f1;
}

/* FORM */
form {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    max-width: 500px;
}

form p {
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

/* BUTTON */
button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #004c99;
}

/* CARD WISATA */
.card {
    width: 250px;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 4px;
}

.card h4 {
    margin: 8px 0;
}

/* GRID */
.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ALERT (optional) */
.alert {
    background: #ffdddd;
    padding: 10px;
    border-left: 5px solid red;
    margin-bottom: 15px;
}
