/* Email Modal Container */
.emailsend {
    display: none;  /* Hidden by default */
    position: fixed;  /* Fixed position for modal */
    z-index: 1;  /* Ensure it's on top of other content */
    left: 0;
    top: 0;
    width: 100%;  /* Full width */
    height: 100%;  /* Full height */
    background-color: rgba(0, 0, 0, 0.4);  /* Black background with transparency */
}

/* Email Modal Content Box */
.emailsend-content {
    background-color: #fff;
    margin: 15% auto;  /* Center the modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;  /* Adjust width to your preference */
    max-width: 400px;  /* Maximum width */
    border-radius: 10px;  /* Rounded corners */
    text-align: center;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
  }
  
  .close-button:hover {
    color: #000;
  }
  
/* Modal Message Text */
#emailMessage {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}
