
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff0f7;
    color: #333;
    line-height: 1.6;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

header {
    padding: 20px;
    background-color: #ffd7ea;
    text-align: center;
    border-bottom: 2px solid #ffaad1;
    border-radius: 8px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #900048;
}

nav a {
    text-decoration: none;
    color: #900048;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff3377;
}

main {
    padding: 20px 0;
}

h2 {
    font-size: 24px;
    color: #900048;
    margin-bottom: 15px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

table, th, td {
    border: 1px solid #ffaad1;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #ffaad1;
    color: #fff;
}

tr:nth-child(even) {
    background-color: #ffe3f1;
}

form {
    max-width: 400px;
    width: 100%;
    background-color: #ffd7ea;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ffaad1;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="number"],
form input[type="date"],
form textarea,
form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ffaad1;
    border-radius: 5px;
}

form button {
    background-color: #900048;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #ff3377;
}

a.tambah-btn {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 15px;
    background-color: #900048;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

a.tambah-btn:hover {
    background-color: #ff3377;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: calc(33.33% - 10px);
    border-radius: 8px;
    border: 2px solid #e60073;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.testimonial {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial blockquote {
    background-color: #fff0f7;
    border-left: 5px solid #e60073;
    padding: 15px 20px;
    border-radius: 8px;
    font-style: italic;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial blockquote strong {
    display: block;
    margin-top: 10px;
    color: #e60073;
    font-style: normal;
}

.steps ol {
    padding-left: 20px;
    margin: 15px 0;
}

.steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.requirements ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.requirements li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.requirements li strong {
    color: #e60073;
}

.info-box {
    background-color: #fff0f7;
    border: 2px solid #e60073;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-box h2 {
    color: #e60073;
    margin-top: 0;
}

.info-box p {
    line-height: 1.6;
    color: #333;
}

.requirements-box {
    background-color: #fff0f7;
    border: 2px solid #e60073;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.requirements-box h2 {
    color: #e60073;
    margin-top: 0;
}

.requirements-box ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0 0 0;
}

.requirements-box li {
    line-height: 1.6;
}

.steps-box {
    background-color: #fff0f7;
    border: 2px solid #e60073;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.steps-box h2 {
    color: #e60073;
    margin-top: 0;
}

.steps-box ol {
    padding-left: 20px;
    margin-top: 15px;
}

.steps-box li {
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
}

.form-box {
    background-color: #fff0f7;
    border: 2px solid #e60073;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-box h2 {
    color: #e60073;
    margin-top: 0;
}

.form-box label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-box button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #e60073;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-box button:hover {
    background-color: #b3005c;
}



