/* Variabel warna */
:root {
    --navbar-footer-bg: #0056B3;
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F9FA;
    --accent-bg: #E9ECEF;
    --primary-text: #3A4337;
    --primary-link: #3C7042;
    --primary-button: #887575;
    --primary-button-text: #FFFFFF;
    --secondary-button-text: #887575;
}

/* Global Styles */
body {
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--primary-text);
    background-color: var(--primary-bg);
    margin: 0;
    padding: 0;
}

/* Font styling */
h1, h2, h3 {
    font-family: 'Abhaya Libre', serif;
}

/* Navbar Styles */
.navbar {
    background-color: var(--navbar-footer-bg);
    padding: 25px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar img.logo-nav {
    height: 40px;
}

.navbar .nav-log,
.navbar .nav-back,
.navbar .nav-order-log {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.nav-button {
    display: flex;
    gap: 10px;
}

.navbar a {
    text-decoration: none;
    color: var(--primary-button-text);
}

/* Footer Styles */
#footer {
    background-color: var(--navbar-footer-bg);
    padding: 20px;
    color: var(--primary-button-text);
}

.foot-basic {
    text-align: center;
}

.foot-basic img.logo-foot {
    height: 40px;
}

.foot-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-order .left-side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foot-order .right-side {
    text-align: right;
}

.foot-order .cost {
    font-size: 18px;
    font-weight: bold;
}

.btn {
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;

    font-size: 20px;
}

.btn-primary {
    background-color: var(--primary-button);
    color: var(--primary-button-text);
    border: none;
}

.btn-secondary {
    border: 2px solid var(--secondary-button-text);
    color: var(--secondary-button-text);
    background: transparent;
}

.carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 20px;
    padding: 20px;
    /* width: 100%; */
}

.carousel .carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

.carousel .carousel-track .card {
    flex: 0 0 500px; /* Fix lebar setiap card 500px */
    width: 500px;
}

/* Tombol Navigasi */
.carousel .button-prev,
.carousel .button-next {
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-text);
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 50%;
}

.carousel .button-prev {
    left: 10px;
}

.carousel .button-next {
    right: 10px;
}


.text-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Card Styles */
.card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.table-card-reg,
.table-card-vip {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    width: 340px; /* Lebar tetap 500px */
    flex: 0 0 340px; /* Pastikan ukurannya tetap dalam flex container */

}


.card:hover {
    transform: translateY(-5px);
}

.card-header {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content .btn{
    width: 100%;
}

.card-title {
    font-family: 'inter', serif;
    font-weight: bold;
    font-size: 20px;
    color: #3A4337;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

.card-capacity {
    margin-bottom: 15px;
    text-align: left;
    width: 100%;

}

.card-capacity p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #3A4337;
}

.capacity-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.capacity-icon {
    width: 20px;
    height: 20px;
}

.capacity-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #3A4337;
}

.btn-primary {
    background: #887575;
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #705c5c;
}




.hero-section {
    background-color: var(--accent-bg);
    padding: 45px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section .content {
    max-width: 50%;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.hero-button {
    margin-top: 20px;
}

.hero-button .btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.hero-button .btn-primary {
    background-color: #007bff;
    color: white;
}

.hero-button .btn-primary:hover {
    background-color: #0056b3;
}

.hero-button .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.hero-button .btn-secondary:hover {
    background-color: #545b62;
}

.hero-section img {
    max-width: 40%;
    height: auto;
}



.order-table-section {
    text-align: center; 
    padding: 45px 100px;
}
.order-table-section .container {
    margin-bottom: 50px;
}

.order-table-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}





/* Modal alert untuk pop-up */
.container-modal {
    background-color: var(--primary-bg);
    padding: 25px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

/* Judul Modal */
.container-modal h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

/* Baris Pembatas */
.line {
    border: 1px solid black;
    margin: 10px 0;
}

/* Section Judul & Tombol Close */
.msg-tittle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

/* Tombol Close */
.msg-tittle .close {
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #555;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.msg-tittle .close:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Form */
.container-modal form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

/* Input */
.container-modal input[type="number"] {
    text-align: left;
    height: 35px;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    transition: border 0.3s ease;
}

.container-modal input[type="number"]:focus {
    border: 1px solid var(--primary-color);
    outline: none;
}

/* Button */
.container-modal button {
    background-color: var(--primary-button);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Semua elemen kecuali anak pertama (tengah) */
.container-modal > *:not(:first-child) {
    text-align: center;
}

/* Loading GIF */
.container-modal .loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.container-modal .loading img {
    width: 100px;
    height: 50px;
}
.container-modal .loading .success {
    width: 50px;
    height: 50px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Mulai dalam keadaan tersembunyi */
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
}

.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1s forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-out {
    opacity: 1;
    animation: fadeOutAnimation 1s forwards;
}

@keyframes fadeOutAnimation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}



.notification {
    font-family: inter;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 20px;
    right: -400px; /* Mulai dari luar layar */
    width: 320px;
    height: 80px;
    padding: 15px;
    color: rgb(0, 0, 0);
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: right 0.5s ease-in-out; /* Pastikan ada animasi */
    z-index: 9999;
}

.success-notif {
    background-color: #ffffff;
    border-left: 8px solid var(--primary-button);

}

.error-notif {
    background-color: #ffffff;
    border-left: 8px solid #EB5757;

}

.notification.show {
    right: 20px; /* Muncul ke dalam layar */
}

.notification.hide {
    right: -500px; /* Pergi keluar layar */
}










/* css untuk halaman user-pesan */
.tittle-menu{
    text-align: center;
    margin: 20px auto;
}

.container-menu {
    padding: 45px 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 250px;
}

/* LEFT SIDE (Kategori Pilihan) */
.container-menu .left {
    display: flex;
    flex-direction: column;
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    /* width: 250px; */
    border: 1px solid #ccc;
}

.container-menu .left h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

/* Style checkbox dan label */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.checkbox-group:hover {
    background: rgba(0, 0, 0, 0.05);
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #333;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: background 0.3s ease;
    cursor: pointer;
}

/* Saat checkbox dicentang */
.checkbox-group input[type="checkbox"]:checked {
    background: #333;
    border-color: #333;
}

/* Tambahkan tanda centang */
.checkbox-group input[type="checkbox"]::after {
    content: "✔";
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked::after {
    opacity: 1;
}

.checkbox-group label {
    font-size: 16px;
    color: #555;
    cursor: pointer;
}

/* Bagian Kanan (Menu Item) */
.container-menu .right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.container-menu .right input[type="text"] {
    padding: 8px;
    /* width: 100%; */
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.container-menu .right p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
}



/* Container utama untuk card menu */
.menu-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom per baris */
    gap: 50px; /* Jarak antar card */
    max-width: 950px;
}

/* Card Menu */
.menu-card {
    width: 430px;
    height: 100%; /* Agar menyesuaikan isi */
    max-height: 500px; /* Batasi tinggi maksimal */
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column; /* Agar isi dalam card tersusun vertikal */
}

/* Bagian dalam Card */
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 10px;
}

/* Bagian Judul & Rating */
.card-content .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Rating */
.card-content .title .rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Deskripsi Menu */
.menu-description {
    width: 100%;
    flex-grow: 1; /* Agar memenuhi ruang kosong */
    overflow: hidden; /* Hindari teks overflow */
    font-size: 16px;
    font-weight: lighter;
    font-style: italic;
    text-align: left;
    margin: 0;
}

/* Harga & Jumlah */
.cost-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cost h3,
#menu_qty{
    margin-bottom: 20px;
}

/* Counter */
.count {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    width: 30%;
}

.counter{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: var(--accent-bg);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Tombol Tambah Ke Daftar */
.btn {
    margin-top: auto; /* Pastikan tombol tetap di bawah */
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #0056b3;
}






/* Styling Footer Order */
#foot-order {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 97.5%;
    background: var(--navbar-footer-bg);
    display: flex;
    justify-content: space-around;
    gap: 320px;
    align-items: center;
    padding: 25px 20px;
    z-index: 1000;
    border-top: 2px solid #f1f1f1;

}

.left-side {
    display: flex;
    align-items: center;
}

.foot-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f1f1;
    margin-right: 15px;
    color: white;

}

.left-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.left-content p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.right-side {
    text-align: right;
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
}

.right-side .cost {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.cost-detail {
    display: none; /* Bisa dibuat toggle untuk melihat detail */
    margin-top: 10px;
}

.text-detail {
    font-size: 14px;
    color: #777;
    margin: 2px 0;
}

.btn-checkout {
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
    height: 60%;
}

.btn-batal{
    background: #ff5a5f;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}


.foot-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}






/* Style untuk container utama */
.container-confirm {
    max-width: 1200px;
    margin: 40px auto;
    padding: 45px 100px;
    border-radius: 12px;
}

.container-confirm h1 {
    text-align: left;
    font-size: 24px;
    color: #333;
    margin-bottom: 50px;
}

/* Style untuk konten utama */
.container-confirm-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

/* Style untuk tabel pesanan */
.left-content {
    flex: 1;
    text-align: left;
}

.left-content table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.left-content th, .left-content td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.left-content th {
    background: #f4f4f4;
    text-align: left;
    font-weight: bold;
    color: #555;
}

.left-content td img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 10px;
}

.left-content .content-confirm {
    display: flex;
    flex-direction: column;
}

.left-content .content-confirm h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.left-content .content-confirm p {
    font-size: 14px;
    color: #777;
}

/* Style untuk bagian harga di tabel */
.left-content td p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Tombol hapus */
.left-content td a img {
    width: 24px;
    height: 24px;
    cursor: pointer;

}

/* Style untuk bagian kanan */
.right-content {
    width: 400px;
    padding: 20px;
    background: var(--secondary-bg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ccc;
}

/* Detail biaya */
.cost-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

/* .line {
    border-bottom: 1px solid #ddd;
    margin: 10px 0;
} */

/* Style untuk informasi tambahan */
.detailed-info {
    margin-top: 15px;
    cursor: pointer;
}

.detailed-info .title {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.detailed-info .title:hover {
    background: #e0e0e0;
}

.detailed-info span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fafafa;
    padding: 10px;
    border-radius: 8px;
}

.info-detail {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

/* Total harga */
.total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

#arrow{
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Header modal */
.msg-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Tombol close */
.msg-title .close {
    cursor: pointer;
    font-size: 20px;
    color: #ff5a5f;
    font-weight: bold;
}

/* Garis pemisah */
.line {
    width: 100%;
    background: #ddd;
    margin-bottom: 15px;
}

/* Label dan select */
label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#paymentMethod {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Konten metode pembayaran */
#konten1,
#konten2,
#konten3 {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-top: 20px;
}

/* Section No Rekening (Buat Lebih Rapi) */
.konten1-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px; /* Tambah jarak antar elemen */
}

/* Input rekening */
#rekeningNumber {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding-right: 50px; /* Kasih space buat tombol copy */
}

/* Tombol copy di dalam input */
.copy-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* Notifikasi "Berhasil Disalin" */
.copy-notif {
    position: absolute;
    right: 5px;
    top: -25px;
    background: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 5px;
    border-radius: 5px;
    display: none; /* Muncul saat tombol diklik */
}

/* Jarak lebih renggang antara No Rekening dan Upload Bukti */
.upload-section {
    margin-top: 25px; /* Tambah jarak */
}

.filter-header{
    font-size: 20px;
    border: none;
    text-align: left;
    background-color: var(--secondary-bg);
    margin-bottom: 20px;
}


/* Input file */
#konten1 input[type="file"] {
    width: 96%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

/* Gambar QRIS */
#konten2 img {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 10px auto;
}

/* List Tata Cara */
#konten3 ol {
    padding-left: 20px;
}

#konten3 ol li {
    margin: 10px 0;
    position: relative;
}






/* style untuk dapur */
.hero-section-dpr {
    padding: 45px 100px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 40px;
}

.hero-section-dpr .content {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    /* gap: 5px; */

}

.hero-section-dpr h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-section-dpr p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.hero-section-dpr .hero-button {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
}





/* Style Dapur Dalam */

.container-dapur {
    padding: 40px 10%;
}

.dapur {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.dapur input[type="text"] {
    border: 1px solid #ccc;
    padding: 10px 15px;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    color: var(--primary-text);
    transition: border 0.3s ease-in-out;
}

.dapur input[type="text"]:focus {
    border: 1px solid #333;
    outline: none;
}

.card-dapur {
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    border: 1px solid black;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.card-dapur img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.card-dapur .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.card-dapur .content h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.content .desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.desc .table{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
}

.card-dapur .card-inside {
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-right: 4px solid var(--primary-text);
    width: 90%;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #ccc;
}

.card-inside {
    display: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

/* Menampilkan card pertama dengan animasi saat halaman dimuat */
.content .card-inside:first-child {
    display: flex;
    max-height: 300px; /* Sesuaikan dengan tinggi konten */
    opacity: 1;
}

/* Saat tombol diklik, semua card-inside muncul */
.card-inside.show {
    display: flex;
    max-height: 300px; /* Sesuaikan dengan tinggi kontennya */
    opacity: 1;
}

/* Membuat tombol tetap di bawah card pertama sebelum expand */
#see_more_order {
    display: block;
    margin-top: 10px; /* Beri jarak dengan card pertama */
    text-align: center;
}


.content-product-inside {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    gap: 5px;
}

.content-product-inside h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.content-product-inside .qty-order {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    gap: 20px;
}

.card-dapur .btn{
    width: 100%;
}



/* Dashboard Layout */
.dashboard {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 20%;
    background-color: #2c4251;
    color: white;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

/* Main Content */
.main-content {
    width: 80%;
    padding: 40px;
    overflow-y: auto;
    margin-left: 50px;

}

/* Sidebar Profile */
.sidebar-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #d9d9d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

.cashier-name {
    font-size: 18px;
    margin-top: 10px;
}

/* Sidebar Navigation */
.sidebar-nav {
    flex-grow: 1;
}

.nav-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-item a {
    color: white;
    text-decoration: none;
    display: block;
}

.nav-item:hover {
    background-color: #3a5369;
}

.nav-item.active {
    background-color: #d2727d;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 10px 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Container */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px;
}

/* Card Styling */
.main-content .card-container .card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    width: 300px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.card-title {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
}

.card-btn {
    display: block;
    width: 90%;
    padding: 10px;
    background-color: #8b7373;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: auto;
}

.card-btn:hover {
    background-color: #775f5f;
}
