body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.banner {
    background: url('/images/backgroundCustomer.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 80px 30px;
    text-align: right; /* 텍스트를 우측 정렬 */
    position: relative;
}
.banner h1 {
    font-size: 48px; /* 글씨 크기 */
    margin: 0; /* 상하 여백 제거 */
    position: absolute; /* 절대 위치 지정 */
    bottom: 10px; /* 하단 여백 */
    right: 10px; /* 우측 여백 */
}

.header-bar {
    background-color: rgba(0, 0, 0, 0.119); /* 검은색 배경, 약간 투명 */
    color: rgb(49, 47, 47); /* 글씨 색상 흰색 */
    font-family: 'Arial', sans-serif; /* 기본 글씨체 */
    font-size: 16px; /* 글씨 크기 */
    padding: 10px 20px; /* 안쪽 여백 */
    display: flex; /* 가로 정렬 */
    align-items: center; /* 세로 정렬 */
    gap: 10px; /* 항목 간 간격 */
}

.header-item {
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}

.divider {
    width: 1px; /* 선 두께 */
    align-self: stretch; /* 상하로 꽉 채움 */
    background-color: rgb(0, 0, 0); /* 선 색상 */
    margin: 0 5px; /* 선 좌우 여백 */
}
/* 전체 섹션 스타일 */
.notice-section {
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center;    /* 세로 중앙 정렬 (선택) */
    padding: 20px;
    background-color: #f9f9f9;
    min-height: 100vh;      /* 화면 높이를 채움 */
  }
  
  /* 공지사항 컨테이너 */
  .notice-container {
    max-width: 1200px;      /* 화면의 최대 너비 설정 */
    width: 90%;             /* 화면 크기에 따라 유동적으로 조정 */
    background: #ffffff;    /* 배경 흰색 */
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
    border-radius: 8px;     /* 모서리 둥글게 */
    
  }
  
  /* 테이블 스타일 */
  .table-layout {
    table-layout: fixed;    /* 고정된 테이블 레이아웃 */
    width: 100%;            /* 부모 컨테이너 크기에 맞춤 */
    border-collapse: collapse; /* 경계선 접합 */
    margin-top: 20px;
  }
  
  .table-layout th,
  .table-layout td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd; /* 셀 경계선 */
  }
  
  .table-layout th {
    background-color: #f0f0f0;
    font-weight: bold;
  }
  
  .table-layout td {
    white-space: nowrap;    /* 텍스트 줄바꿈 방지 */
    overflow: hidden;       /* 넘치는 텍스트 숨기기 */
    text-overflow: ellipsis; /* 넘치는 텍스트에 ... 표시 */
  }
  
  .title-cell {
    max-width: 300px;       /* 제목 셀 최대 너비 설정 */
  }
  
  /* 검색 영역 */
  form#search-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  #search-form select,
  #search-form input,
  #search-form button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  #search-form button {
    background-color: #000000;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  #search-form button:hover {
    background-color: #000000;
  }
  
  /* 페이지네이션 버튼 */
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .pagination button {
    padding: 10px 15px;
    margin: 0 5px;
    border: none;
    background-color: #000000;
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .pagination button:hover {
    background-color: #000000;
  }
  