
    body { 
        font-family: Montserrat, sans-serif; 
        color: #6d6d6d;     
        text-align: center; /* 내용 중앙 정렬 */
    }
    .table-container { 
        margin: 0 auto; /* 자동 여백 */ 
        width: 60%; /* 너비를 60%로 설정 */
    }
    table { 
        border-collapse: collapse; 
        width: 100%; /* 테이블 너비 100% */
    }
    th, td { 
        border: 1px solid #ccc; 
        padding: 8px; 
        text-align: left; 
    }
    th { 
        background-color: #f9f9f9; 
    }
