/* body 전체 */
body {
    background-color: #7FFFD4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* 흰색 박스 컨테이너 */
.container {
    width: 50%;
    height: 500px;
    background-color: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

h2 {
    margin-top: 0;
}

/* 파일 선택 input 숨김 */
#fileInput {
    display: none;
}

/* 커스텀 업로드 버튼 */
#uploadButton {
    padding: 2px 2px;
    color: white;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    display: inline-block;
    background-image: url('../up/cloud.png'); /* cloud.png 위치에 맞춤 */
    background-size: cover;
    width: 50px;
    height: 50px;
    background-color: transparent;
}

/* 파일 리스트 */
#fileList {
    list-style-type: none;
    padding: 0;
}

#fileList li {
    margin: 5px;
}

/* 메모장 */
textarea {
    width: 100%;
    height: 250px;
    padding: 15px;
    margin: 10px 0;
    border-radius: 20px;
    border: 5px solid #ccc;
    box-sizing: border-box;
}

/* 버튼 기본 스타일 */
button {
    position: absolute;
    top: 90%;
    left: 45%;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin-top: 5px;
}

button:hover {
    background-color: #45a049;
}

/* 드롭 영역 */
#drop-area {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 84%;
    width: 33%;
    height: 60px;
    border: 3px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#drop-area img {
    max-width: 100%;
    max-height: 100%;
}

/* 업로드된 이미지 영역 */
#uploaded-images {
    position: absolute;
    left: 80%;
    transform: translateX(-50%);
    top: 84%;
    width: 33%;
    height: 60px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#uploaded-images img {
    max-width: 100px;
    max-height: 100px;
    cursor: pointer;
    border: 2px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}

/* 알람 버튼 고정 */
.alarm-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background-color: #FF6347;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

