/* CSS Document */
body {
    font-family: Arial, sans-serif;
    margin: 0; /* Tambahkan ini untuk menghapus margin default dari body */
}

/* Tombol "Buat Pesanan" */
.btnBuatPesanan {
    padding: 10px;
   background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px; /* Tambahkan ini untuk memberikan margin antar tombol */
}

/* Form Pesanan - Custom Modal */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Form Pesanan - Konten Custom Modal */
.custom-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* Tombol Close */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Pesanan - Input */
form {
    display: grid;
    gap: 10px;
}

/* Efek visual tambahan untuk informasi produk */
#judulForm {
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 10px;
	font-size: 20px;
}

#infoProduk {
    font-style: italic;
    color: #555;
}

