.full-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 0;	
}

.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;	
}

.box {
    width: 40vw; /* 기존에서 가로 폭을 설정한 예시 */
    max-width: 300px; 
    height: 100px; /* 원하는 높이로 고정 설정 (예: 400px) */
    aspect-ratio: unset; /* aspect-ratio 속성은 높이를 고정할 경우 제거해도 됩니다 */
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
    border-radius: 8px;
}

.box div:not(:last-child) {
    border-bottom: 1px solid black;
    width: 100%;
}

.title {
    font-weight: bold;
    /* 여기에서 배경색을 변경할 수 있습니다 */
    background-color: lightgray;
    font-size: 1.5rem;
}

.value {
    font-size: 2rem;
}

.status {
    font-size: 1.2rem;
}

body, html {
    margin: 0;
    padding: 0;
}

/* 미디어 쿼리로 화면 크기에 따라 폰트 크기를 조절합니다 */
@media screen and (max-width: 1200px) {
    .title {
        font-size: 1.4rem;
    }
    .value {
        font-size: 1.8rem;
    }
    .status {
        font-size: 1.1rem;
    }
	.date-input + .date-input {
		margin-bottom: 10px; /* 큰 화면에서는 더 큰 간격 */
    }	
}

@media screen and (max-width: 992px) {
    .title {
        font-size: 1.3rem;
    }
    .value {
        font-size: 1.6rem;
    }
    .status {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .title {
        font-size: 1.2rem;
    }
    .value {
        font-size: 1.4rem;
    }
    .status {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .title {
        font-size: 1rem;
    }
    .value {
        font-size: 1.2rem;
    }
    .status {
        font-size: 0.8rem;
    }	
}

.map-button {
	padding: 5px 15px;
	font-size: 16px;
	color: white;
	background-color: #4CAF50;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

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

/* 스마트폰 화면에서 예쁘게 보이도록 CSS 스타일 */
/* 기본적인 폼 스타일 설정 */
form {
        /* max-width: 400px; */
        margin: auto;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: #f9f9f9;
    }
    
    .form-group {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .date-input, select, input[type="submit"] {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        height: 48px;
    }
    
    input[type="submit"] {
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
		border-radius: 8px;
    }
    
    input[type="submit"]:hover {
        background-color: #0056b3;
		border-radius: 8px;
    }