		  html, body {
		    margin: 0;
		    padding: 0;
		    height: 100%;
		  }

		  .custom-modal-overlay {
		    display: none;
		    position: fixed;
		    top: 0;
		    left: 0;
		    width: 100vw;
		    height: 100vh;
		    background-color: rgba(0, 0, 0, 0.6);
		    z-index: 9999;
		    align-items: center;
		    justify-content: center;
		  }

		  .custom-modal-content {
		    background: #fff;
		    width: 70vw;
		    height: 70vh;
		    border-radius: 10px;
		    position: relative;
		    display: flex;
		    flex-direction: column;
		    overflow: hidden;
		    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
		  }

		  .custom-modal-header {
		    padding: 10px 20px;
		    font-size: 1.25rem;
		    font-weight: bold;
		    border-bottom: 1px solid #ccc;
		    position: relative;
		    background-color: #f8f8f8;
		  }

		  .custom-modal-close {
		    position: absolute;
		    top: 10px;
		    right: 15px;
		    font-size: 24px;
		    font-weight: bold;
		    color: #333;
		    cursor: pointer;
		  }

		  .custom-modal-body {
		    flex: 1;
		    padding: 0;
		    overflow: hidden;
		    display: flex;
		    flex-direction: column;
		  }

		  .custom-modal-body iframe,
		  .custom-modal-body img {
		    flex: 1;
		    width: 100%;
		    height: 100%;
		    border: none;
		  }

			.rounded-button,
			.rounded-link {
			  display: inline-block;
			  padding: 10px 16px;
			  margin: 10px;
			  border-radius: 20px;
			  background-color: rgba(224, 224, 224, 0.7);
			  color: black;
			  text-decoration: none;
			  font-size: 16px;
			  border: none;
			  cursor: pointer;

			  /* NEW: subtle shadow for lift */
			  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
			  transition: box-shadow 0.2s ease, transform 0.2s ease;
			}
			.rounded-button:hover,
			.rounded-link:hover {
  			background-color: #000;   /* Black background */
  			color: white;             /* White text for contrast */
  			box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  			transform: translateY(-2px);
			}
