/* Gaya umum untuk seluruh halaman */
body {
    background-color: #F5F5DC; /* Soft Cream */
    font-family: 'Roboto', sans-serif;
    color: #3E2B2B; /* Coklat Tua */
}

.navbar, .navbar-nav {
    background-color: #3E2B2B; /* Coklat Tua */
    color: white;
}

.navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: #D9B78D !important; /* Soft Cream Hover */
}

.btn {
    background-color: #D9B78D; /* Soft Cream */
    color: #3E2B2B;
    border-radius: 5px;
}

.btn:hover {
    background-color: #C9A370; /* Slightly darker cream */
}

footer {
    background-color: #3E2B2B; /* Coklat Tua */
    color: white;
    padding: 20px;
    text-align: center;
}

.card {
    background-color: #3E2B2B; /* Coklat Tua */
    color: white;
    border-radius: 10px;
}

.card-header {
    background-color: #C9A370; /* Soft Cream */
    color: #3E2B2B;
    font-weight: bold;
}

.card-body {
    background-color: #3E2B2B; /* Coklat Tua */
    color: white;
}

/* Form input */
input, select, textarea {
    background-color: #F5F5DC; /* Soft Cream */
    color: #3E2B2B;
    border: 1px solid #3E2B2B;
    border-radius: 5px;
}

input:focus, select:focus, textarea:focus {
    border-color: #C9A370; /* Highlight with soft cream */
    outline: none;
}

/* Tambahan untuk header dan judul */
.nama-pemilik {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3E2B2B; /* Coklat Tua */
}
