/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #219653;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.logo span {
    color: #27ae60;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #27ae60;
}

.icons {
    display: flex;
    align-items: center;
}

.icons div {
    font-size: 1.2rem;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
}
.menu-btn {
    display: none; /* Sembunyikan tombol burger di desktop */
}

@media (max-width: 768px) {
    .menu-btn {
        display: inline-block; /* Tampilkan kembali di mobile */
    }

    .navbar {
        position: fixed;
        top: 0; /* Ubah ini agar menu menutupi seluruh layar dari atas */
        left: -100%;
        background: white;
        width: 80%;
        height: 100vh; /* Gunakan 100vh agar menu setinggi layar */
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease-in-out; /* Perhalus transisi */
        padding-top: 5rem; /* Beri jarak dari atas */
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    .navbar ul li {
        margin: 1rem 0;
        font-size: 1.2rem; /* Perbesar font agar mudah diklik */
    }
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Search Form */
.search-form {
    position: relative;
    display: none;
}

.search-form.active {
    display: flex;
    position: absolute;
    top: 100%;
    right: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
}

/* Filter Kategori */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.filter-btn {
    padding: 8px 16px;
    background: #f1f1f1;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: #27ae60;
    color: white;
}

/* Hasil Pencarian */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Home Section */
.home {
    padding: 8rem 0 4rem;
    background: linear-gradient(to right, #f9f9f9, #e8f5e9);
}

.home .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home .content {
    flex: 1;
    padding-right: 2rem;
}

.home .content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.home .content h1 span {
    color: #27ae60;
}

.home .content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.home .image {
    flex: 1;
}

.home .image img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Categories Section */
.categories {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #27ae60;
    margin: 0.5rem auto 0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.categories .box {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #333;
}

.categories .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.categories .box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.categories .box h3 {
    font-size: 1.2rem;
    margin: 0;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #f9f9f9;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

.product:hover {
    transform: translateY(-10px);
}

.product-header {
    position: relative;
}

.product-header img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
}

.discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-footer {
    padding: 1.5rem;
}

.product-footer h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.rating {
    color: #f1c40f;
    margin-bottom: 0.5rem;
}

.product-price h4 {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.product-price h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin: 0;
}

.product ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.product:hover ul {
    opacity: 1;
}

.product ul li {
    margin: 0 5px;
}

.product ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s;
}

.product ul li a:hover {
    background: #27ae60;
    color: white;
}

.more-btn {
    text-align: center;
    margin-top: 3rem;
}

.product {
  flex: 1 1 250px;          /* minimal lebar 250px, fleksibel */
  max-width: 250px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 80%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
}


.products-grid {
  display: flex;
  flex-wrap: wrap;       /* agar produk bisa lanjut ke baris berikutnya */
  gap: 20px;             /* jarak antar produk */
  justify-content: flex-start; /* rata kiri, bisa diganti center jika mau */
}

.products-grid .product-item {
  flex: 1 1 250px;       /* fleksibel, minimal lebar 250px per produk */
  max-width: 250px;      /* maksimal 250px agar ukuran seragam */
  box-sizing: border-box;
  background: white;     /* contoh background produk */
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;          /* supaya bisa pindah baris */
  gap: 20px;                /* jarak antar produk */
  justify-content: flex-start; /* rata kiri */
  padding: 10px;
}
/* Promo Section */
.promo {
    padding: 5rem 0;
}

.promo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-box {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.promo-image {
    flex: 1;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    flex: 1;
    padding: 2rem;
}

.promo-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #333;
}

.promo-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f9f9f9;
}

.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.features .box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.features .box:hover {
    transform: translateY(-10px);
}

.features .box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.features .box h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem;
}

.features .box p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Testimonial Section */
.testimonial {
    padding: 5rem 0;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.client {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.client h3 {
    margin: 0;
    font-size: 1.1rem;
}

.client span {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-box p {
    color: #333;
    font-style: italic;
    margin: 0;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about .image {
    flex: 1;
}

.about .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about .content {
    flex: 1;
}

.about .content h3 {
    font-size: 1.8rem;
    margin-top: 0;
    color: #333;
}

.about .content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature p {
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-box i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.info-box p {
    margin: 0;
    color: #333;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-media a:hover {
    background: #27ae60;
    color: white;
}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form .box {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea.box {
    height: 150px;
    resize: vertical;
}

/* Order Form Section */
.order-section {
    padding: 3rem 0;
    background: #e8f5e9;
}

.order-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.order-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 5rem 0 0;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-box h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-box h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #27ae60;
}

.footer-box a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.footer-box a:hover {
    color: #27ae60;
}

.footer-box a i {
    margin-right: 5px;
}

.footer-box p {
    color: #0b0b0b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-box form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.credit {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #0c0c0c;
    font-size: 0.9rem;
    color: #0a0a0a;
}

.credit span {
    color: #27ae60;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .home .container {
        flex-direction: column;
        text-align: center;
    }
    
    .home .content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        background: white;
        width: 80%;
        height: calc(100vh - 80px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    .navbar ul li {
        margin: 1rem 0;
    }
    
    .search-form {
        width: 90%;
        right: 5%;
    }

/* Animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeInUp 0.5s ease forwards;
}

/* Animasi keranjang */
.cart-btn.animate {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Animasi tombol tambah ke keranjang */
.add-to-cart.added {
    background: #27ae60;
    color: white;
}

/* Notifikasi */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    background: #27ae60;
    color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
}

.notification.error {
    background: #e74c3c;
}

/* Header sticky */
.header.sticky {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}
/* Halaman Produk */
.all-products {
    padding-top: 90px; 
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 16px;
    background: #f1f1f1;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #27ae60;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}
/* Navigasi aktif */
.navbar ul li a.active {
    color: #27ae60;
    font-weight: 600;
}

/* Layout halaman produk */
.all-products {
    padding: 100px 0 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ============================================== */
/* === KODE TAMBAHAN WAJIB UNTUK FUNGSI FITUR === */
/* Tambahkan ini di bagian paling akhir CSS Anda  */
/* ============================================== */

/* WAJIB: Untuk Fungsi Search Bar agar bisa muncul dan hilang */
.header .search-form {
    position: absolute;
    top: 115%;
    right: 2rem;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    width: 350px;
    padding: 1rem;
    transform: scaleY(0); /* Sembunyikan dengan skala */
    transform-origin: top;
    transition: transform 0.2s ease-out;
    z-index: 100;
}

.header .search-form.active {
    transform: scaleY(1); /* Tampilkan dengan skala */
}

/* WAJIB: Untuk Fungsi Menu Burger di Mobile */
/* Menggunakan gaya asli Anda dari @media (max-width: 768px) */
/* Pastikan kode ini ada di dalam media query Anda atau tambahkan jika belum ada */
@media (max-width: 768px) {
    /* Gaya ini memastikan menu muncul dari kiri sesuai desain asli Anda */
    .navbar.active {
        left: 0; /* Kelas 'active' dari JS akan memicu ini */
    }
}

/* WAJIB: Untuk menyembunyikan produk saat difilter oleh pencarian */
/* JavaScript akan menangani ini, tetapi pastikan tidak ada gaya lain yang memaksa `display: block !important;` pada .product */


/* WAJIB: Untuk animasi keranjang belanja */
.cart-btn.animate {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* WAJIB: Untuk notifikasi */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 15px 25px;
    background: #27ae60;
    color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 2000;
}

.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification.error {
    background: #e74c3c;
}

/* ============================================== */
/* === GAYA TAMBAHAN UNTUK HALAMAN ADMIN (WAJIB) === */
/* Tempel ini di bagian paling bawah style.css Anda */
/* ============================================== */

.admin-container { 
    padding: 100px 2rem 2rem; 
    max-width: 1100px; 
    margin: auto; 
    background-color: #f8f9fa;
}

.admin-form { 
    background: #fff; 
    padding: 2rem; 
    border-radius: 8px; 
    margin-bottom: 2rem; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.admin-form h3 { 
    margin-top: 0; 
    color: #27ae60; 
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.admin-form .form-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem; 
}

.admin-form .form-group { 
    margin-bottom: 1rem; 
}

.admin-form label { 
    display: block; 
    margin-bottom: .5rem; 
    font-weight: 600; 
    color: #333; 
}

.admin-form input, 
.admin-form select, 
.admin-form textarea { 
    width: 100%; 
    padding: .75rem; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    box-sizing: border-box; 
    font-family: inherit;
}

.admin-form .full-width { 
    grid-column: 1 / -1; 
}

.product-table { 
    width: 100%; 
    border-collapse: collapse; 
    background: #fff; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.product-table th, 
.product-table td { 
    border: 1px solid #ddd; 
    padding: .8rem; 
    text-align: left; 
    vertical-align: middle;
}

.product-table th { 
    background: #e9ecef; 
}

.product-table img { 
    width: 60px; 
    height: 60px; 
    object-fit: contain; 
    border-radius: 5px; 
    background-color: #f9f9f9;
}

.product-table .actions button { 
    margin-right: 5px; 
    padding: 5px 10px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    color: white;
}

.product-table .actions .btn-edit { 
    background-color: #ffc107; 
    color: #000; 
}

.product-table .actions .btn-delete { 
    background-color: #dc3545; 
    color: #fff; 
}
/* GAYA UNTUK HALAMAN LOGIN */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
}
.login-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}
.login-form h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    color: var(--primary-color, #27ae60);
}
.error-message {
    color: #dc3545;
    margin-top: 1rem;
    text-align: center;
    min-height: 1.2em;
}
/* Di dalam file style.css */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
/* Form Pemesanan */
.order-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}
.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.order-form .form-group {
    margin-bottom: 1.5rem;
}
.order-form label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}
.order-form input,
.order-form textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.order-form textarea[readonly] {
    background-color: #f1f1f1;
    height: 150px;
    resize: none;
}
.order-form input[readonly] {
    background-color: #f1f1f1;
    font-weight: bold;
}
}