
.email-copy-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: Arial, sans-serif;
    margin: 20px 2px 0 0;
}

.email-copy-group {
    display: flex;
    height: 36px;
}

.email-input {
    padding: 8px 8px;
    border: 2px solid #C4C6C9;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    width: 240px;
    background-color: #ffffff;
    outline: none;
}

.copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background-color: #9c8153;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copy-button:hover {
    background-color: #c6b98e;
}

.copy-button:active {
    background-color: #9c8153;
}

.copy-message {
    color: #003055;
    font-size: 12px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-message.show {
    opacity: 1;
}
/* Modal styles */
.modal {
    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.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.btn-submit {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #45a049;
}