    
  body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    height: 100%;
  }


  .container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
  }


  .header {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
  }

  .header h1 {
    font-size: 18px;
    margin: 0 0 10px 0;
    text-align: center;
  }

  .search-bar {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
  }

  .search-bar select,
  .search-bar input {
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    flex: 1;
  }

  .search-bar input {
    flex: 2;
  }

  #member-count {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #0056b3;
    padding: 5px 8px;
    border-radius: 5px;
    text-align: center;
    flex-shrink: 0;
  }


  .main {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
  }


  .namecard {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    padding: 12px;
    height: 40px; 
    justify-content: space-between;
  }

  .namecard .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  /* 좌측 정보 */
.namecard .info .left {
display: flex;
flex-direction: column;
justify-content: center;
gap: 3px; /* 이름과 회사 간 간격을 줄임 */
}

.namecard .info .left .name {
font-size: 14px;
font-weight: bold;
margin-bottom: 0; /* 이름 아래 간격을 제거 */
}

.namecard .info .left .company {
font-size: 12px;
color: #666;
margin-top: 1; /* 회사명 위 간격을 제거 */
}
  /* 우측 정보 */
  .namecard .info .right {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 텍스트 세로 정렬 */
    gap: 3px;
  }


  .namecard .info .right .position {
    font-size: 12px;
    color: #777;
    margin-bottom: 0;
  }

  .namecard .info .right .area {
    font-size: 12px;
    color: #444;
    margin-bottom: 1;
  }
