body {
    background-image: url('panggung.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    padding-top: 80px;
    /* Add padding to the top to avoid navbar overlap */
}

/* Navbar Styles */
.navbar {
    height: 80px;
    /* Set a height for the navbar */
    background-color: rgba(0, 0, 0, 0.9);
    /* Background color for visibility */
}

/* Overlay Styles */
.overlay {
    position: absolute;
    /* Position overlay absolutely */
    top: 0;
    /* Align to top */
    left: 0;
    /* Align to left */
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(0, 0, 0, 0.5);
    /* Translucent overlay */
    z-index: 1;
    /* Place overlay above background */
}

/* Container Styles */
.page-container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    /* Set a max-width for the container */
    margin: 100px auto;
    /* Center the container and add space at the top */
}

/* Schedule Header */
.schedule-header {
    margin-bottom: 40px;
    /* Increase space below header */
    margin-top: 40px;
    /* Add space above header */
    text-align: center;
    /* Center align the title and description */
}

/* Schedule Title and Description */
.schedule-title {
    font-size: 24px;
    /* Title size */
    font-weight: bold;
    /* Bold font */
}

.schedule-description {
    font-size: 16px;
    /* Description size */
    color: #555;
    /* Gray color */
    margin-top: 10px;
    /* Space above the description */
}

/* Table Styles */
.table {
    background-color: #ffffff;
    /* Table background */
}

.table th,
.table td {
    padding: 12px;
    /* Inner cell spacing */
}

.table-bordered {
    border: 1px solid #ddd;
    /* Border around table */
}

/* Button Styles */
.btn-buy-ticket {
    background-color: #007bff;
    /* Button color */
    color: white;
    /* Text color */
    padding: 10px 20px;
    /* Inner padding */
    border: none;
    /* No border */
    border-radius: 5px;
    /* Rounded corners */
    cursor: pointer;
    /* Pointer cursor on hover */
}

.btn-buy-ticket:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}