body
{
    background:#f8f9fa;
}
.top_img_cover {
    margin: 0 auto;
    width: calc(100% - 20px);
    max-width: 1280px;
    border-radius: 10px;
    overflow: hidden;
}

/* 사이드 메뉴 mini 모드: 텍스트 숨김, 너비 축소 */
aside.mini {
    width: 84px !important;
    min-width: 84px !important;
    transition: width 0.2s;
}

aside.mini .menu-text {
    display: none !important;
}

aside.mini ul li a {
    justify-content: center;
    text-align: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

aside.mini svg {
    margin-right: 0 !important;
}

/* 사이드 메뉴 텍스트 hover/active/selected 시 파란색 */

#pc-dashboard-aside ul li a:hover .menu-text,
#pc-dashboard-aside ul li a:focus .menu-text{
    color: #2563eb !important;
}

/* dl, dt, dd 기반 심플 반응형 페이지네이션 */
.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
}
.pagination dt, .pagination dd {
	margin: 0;
	padding: 0;
}
.pagination dt {
	font-size: 15px;
}
.pagination dd {
	display: inline-block;
}
.pagination dd a, .pagination dt a {
	display: block;
	padding: 6px 12px;
	border-radius: 4px;
	color: #007bff;
	background: #fff;
	border: 1px solid #dee2e6;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	min-width: 32px;
	text-align: center;
}
.pagination dd.active a {
	background: #007bff;
	color: #fff;
	border-color: #007bff;
	font-weight: bold;
}
.pagination dd a:hover, .pagination dt a:hover {
	background: #f2f2f2;
	color: #0056b3;
}
@media (max-width: 640px) {
	.pagination dd a, .pagination dt a {
		padding: 4px 8px;
		font-size: 13px;
		min-width: 24px;
	}
}

/* 테이블 반응형 및 심플 스타일 */
.responsive-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.responsive-table th, .responsive-table td {
  padding: 12px 10px;
  text-align: left;
  font-size: 15px;
}

.responsive-table th {
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
}

.responsive-table tr {
  border-bottom: 1px solid #f1f1f1;
  transition: background 0.15s;
}

.responsive-table tr:last-child {
  border-bottom: none;
}

.responsive-table tbody tr:hover {
  background: #f0f6ff;
}

.responsive-table td {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .responsive-table th, .responsive-table td {
    padding: 8px 4px;
    font-size: 13px;
  }
  .responsive-table {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .card-list {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #f3f4f6;
    margin-bottom: 16px;
    padding: 16px 12px;
    display: block;
  }
  .card-list-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .card-list-row:last-child {
    margin-bottom: 0;
  }
  .card-list-row dt {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    min-width: 70px;
    margin: 0;
    flex-shrink: 0;
    padding-right: 8px;
    line-height: 1.7;
  }
  .card-list-row dd {
    font-size: 15px;
    color: #222;
    font-weight: 400;
    text-align:left;
    margin: 0;
    flex: 1;
    line-height: 1.7;
  }
  .card-list-row dd.text-right {
    font-size: 15px;
    color: #222;
    font-weight: 400;
    text-align:right;
    margin: 0;
    flex: 1;
    line-height: 1.7;
  }
}

