/* Add custom CSS for the background image and centering */
.background-image {
    background-image: url('background.png'); /* Update to 'background.png' */
    background-size: cover;
    background-attachment: fixed;
    text-align: center; /* Center the content */
    opacity: 0.8;
    padding: 20px;
    position: fixed; /* Fixed position to cover the entire viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Set z-index to place it behind all content */
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}


/* Add custom CSS for the container */
.container {
    max-width: 800px; /* Limit maximum width to 800px */
    margin: 0 auto; /* Center the content horizontally */
    position: relative; /* Add position relative to place above the background */
    z-index: 1; /* Set z-index to 1 to place it above the background */
}

.membership-description {
    overflow: hidden;
    border: 3px solid #ccc;
    padding: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin: 20px auto; /* Add margin for spacing between sections */
    position: relative;
}

.membership-description h3 {
    text-align: center; /* Center-align the "Rental Options" title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a shadow to the text */
    -webkit-text-stroke: 1px red; /* Add a thinner red outline to the text (for WebKit browsers) */
    color: black; /* Set text color */
}
.membership-description img {
    display: block; /* Center-align images horizontally */
    margin: 0 auto; /* Center-align images horizontally */
    max-width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); /* Add drop shadow to images */
    border-radius: 10px; /* Round the image corners for softer edges */
}

/* Add custom CSS for table layout */
.cage-container {
    display: flex; /* Use flexbox to layout tables side by side */
    justify-content: space-between; /* Distribute space between tables */
}

.cage-table {
    vertical-align: top;
    width: 45%; /* Set width to control spacing */
    border: 2px solid red; /* Change border color to red */
    border-radius: 10px; /* Add border radius for rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add drop shadow */
    padding: 10px; /* Add padding for spacing inside tables */
    margin: 10px; /* Add margin for spacing between tables */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center content vertically */
}

.cage-table th {
    text-align: center; /* Center-align text horizontally */
    padding: 10px;
}

.cage-table td {
    text-align: center; /* Center-align text horizontally */
    vertical-align: top; /* Align text at the top */
}

.cage-table td ul {
    margin-top: 0;
    padding-left: 20px; /* Add left padding to the lists */
    text-align: left; /* Left-align the list items */
}


/* Center the "Rental Options" title */
.rental-title {
    text-align: center;
}

/* Add CSS for the modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Add a close button style */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Additional CSS for the slider images */
.slider-container {
    position: relative;
}

.slider {
    display: flex;
    animation: scrollRightToLeft 10s linear infinite;
    cursor: pointer; /* Add a pointer cursor for the entire slider */
}

.slider img {
    width: 200px;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid red;
}

/* Additional CSS for the clickable expanded image */
.slider img.expanded {
    width: auto;
    max-height: 80%;
    max-width: 80%;
    cursor: pointer; /* Add a pointer cursor for the expanded image */
}
