/* styles.css */

/* Basic styling for the popup */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Popup content */
.popup-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 90%;
    max-width: 1000px;
    position: fixed;
    left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
    border-radius: 10px; /* Adds rounded corners */
    display: flex; /* This line is optional based on content needs */
    align-items: center;
    justify-content: center;
    text-align: center; /* Centers text content */
}

.popup-title {
	font-size: 20px; /* Adjust font size as needed */
    color: #003; /* Dark gray color for readability */
    text-align: center; /* Centers the text horizontally */
}


/* Close button */
.close-btn {
  position: absolute; /* Position absolutely within the .popup container */
  top: 15px;          /* Distance from the top edge */
  right: 20px;        /* Distance from the right edge */
  background: transparent; /* Transparent background */
  border: none;            /* Remove default border */
  font-size: 24px;         /* Size of the close icon */
  color: #333;             /* Text color */
  cursor: pointer;         /* Pointer cursor on hover */
  border-radius: 4px;     /* Slightly rounded corners */
}

.close-btn:hover,
.close-btn:focus {
    text-decoration: none;
    cursor: pointer;
}
.popup-close-btn {
	
}

/* Slider container */
.slides {
     display: flex;
    align-items: center; /* Centers items vertically */
    justify-content: center; /* Centers items horizontally */
    width: 100%; /* Full viewport width, adjust as needed */
    height: 100%; /* Full viewport height, adjust as needed */
}



.image-style {
    max-width: 80%;
    height: auto;
    object-fit: cover; /* Scales the image to cover the container */
}

/* Previous and next buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    margin-left: 10px; /* Adjust this value as needed */
    margin-right: 10px; /* Adjust this value as needed */
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 5px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
