@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200&family=Noto+Sans+Thai:wght@100;300;400&display=swap');
body {
    font-family: Arial, sans-serif;
    font-family: 'Noto Sans Thai', sans-serif;
    line-height: 1.5;
    margin: 20px;
    padding: 0;
    background-color: #f4f4f9;
}
.email-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.email-field {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
.email-field span {
    width: 70px;
    font-weight: bold;
    color: #333;
}
.email-field p {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    margin: 0;
}
.email-body {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
}
.container {
    width: 100%;
    text-align: left;
    padding: 5px;
    margin-bottom: 20px;
    font-size: 15px;
}

.container-1 {
display: flex; /* Make .container-1 a flex container */
justify-content: center; /* Center the content horizontally */
align-items: center; /* Center the content vertically */
max-width: 800px;
padding: 20px;
flex-direction: column; 
margin-bottom: 20px;
margin: 0 auto; /* Center .container-1 within its parent */
font-size: 15px;
}
   



.email-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #6f79da;
    border-bottom: 2px solid #ccc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.email-header-top .title {
    font-weight: bold;
    color: white;
}
.email-header-top .buttons {
    display: flex;
    gap: 10px;
}
.email-header-top .buttons .button {
    width: 15px;
    height: 15px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.email-header-top .buttons .button.minimize { 
    background-color: #ffcc00; 
}
.email-header-top .buttons .button.maximize { 
    background-color: #00cc00; 
}
.email-header-top .buttons .button.close { 
    background-color: #ff3333; 
}






.notebox {
    border: 1px solid red;
    padding: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    width: 100%;





}
.notebox p {
    margin: 0;
    margin-left: 10px; /* 이미지와 텍스트 사이에 약간의 간격을 줍니다 */
}
.notebox:hover {
    background-color: white;
    cursor: pointer;
    color: #073963;
}
.arrow {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
}



.content {
    display: none;
    padding: 10px;
    margin-bottom: 10px;


 
}

.content.show {
            display: block;
            animation: slideDown 0.8s forwards; /* 애니메이션을 추가하여 자연스럽게 보이게 합니다 */
        }
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

