.sections {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

.sections h1 {
    font-size: 1.8rem;
    text-align: center;
    color: #003580;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.BusinessStatusCheck-btn {
    width: 100%;
    padding: 10px;
    background-color: #004A8F;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.BusinessStatusCheck-btn:hover {
    background-color: #003A6F;
}

.result-container {
margin-top: 20px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #f9f9f9;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.result-container h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003580;
    text-align: center;
}

.row {
    display: flex;
}

.row-bottomline {
    border-bottom: 1px solid #c7c7c7;
}

.cell {
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    white-space: pre-line; /* 줄바꿈 허용 */
    word-break: break-word; /* 긴 텍스트 줄바꿈 */
}

.cell.header {
    background-color: #004A8F;
    color: white;
    font-weight: bold;
    text-align: center; /* 헤더는 가운데 정렬 */
}

.cell:first-child {
    flex: 2; /* 사업자번호 열 (30%) */
}

.cell:nth-child(2) {
    flex: 3; /* 현재상태 열 (25%) */
}

.cell:nth-child(3) {
    flex: 2.5; /* 최종변경일 열 (20%) */
}

.cell:last-child {
    flex: 3; /* 변경전상태 열 (25%) */
    border-right: none; /* 마지막 열의 선 제거 */
}

.row:first-child .cell {
    border-top: none; /* 첫 번째 행의 상단 선 제거 */
} 

.header {
    background-color: #004A8F;
    color: white;
    font-weight: bold;
}

.error {
    color: red;
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
}

p.inputedcounting {
    font-size: 0.8rem;
    color: #868686;
    font-weight: bold; /* 굵은 글씨 */        
}

@media (max-width: 900px) {
    .mobile_col8 h1 {
        font-size: 1.5rem;
    }
    
    .mobile_hidden {
        display: none;
    }

    .mobile_adj {
        justify-content: center;
        
    }

    .mobile_col8 {
        width: 95%;
    }
}