/* 기본 모달 스타일 */
.modal-mail {
    display: none; /* 기본적으로 숨김 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

/* 모달 창 */
.modal-content {
    background-color: white;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* 버튼 스타일 */
.modal-buttons {
    display: flex;
    justify-content: center;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirm-btn {
	margin: 10px 5px;
    background-color: #2196f3;
    color: white;
}

.cancel-btn {
	margin: 10px 5px;
    background-color: #ccc;
}

/* 모달 헤더 */
.modal-mail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.modal-mail-header h2 {
    margin: 0;
    font-size: 15px;
    color: #333;
}
/* 닫기 버튼 (×) */
.close-btn {
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}
