/* Hide the modal by default */
.toggle-email-preview {
  display: none;
}

/* Modal container */
/* Hide the modal container by default */
/* Ensure the modal is hidden by default */
/* Hide the modal by default */
/* Hide the modal by default */
.email-preview-container {
  display: none;
  justify-content: center;
  align-items: center;
}

/* Email preview content styling */
.email-preview {
	background-color: #fff;
    padding: 45px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    height: auto;
    overflow-y: auto;
    display: block;
    border-radius: 50px;
    margin-top: 50px;
}

/* Show the modal when the container has the active class */
.email-preview-container.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    right: 0;
    bottom: 0;
	cursor: pointer;
}

/* Close button styles */
.close-modal {
  	position: absolute;
    top: 70px;
    right: calc(50% - 240px);
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.close-modal:hover {
  color: red; /* Change color when hovered */
}
