/* CSS 변수 정의 */
:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --success-color: #28a745;
    --success-hover: #218838;
    --danger-color: #ff4d4d;
    --danger-hover: #d43f3f;
    --warning-color: #ffc107;
    --warning-hover: #e0a800;
    --info-color: #17a2b8;
    --info-hover: #138496;
    --secondary-color: #6c757d;
    --secondary-hover: #5a6268;
    
    --border-color: #e9ecef;
    --border-light: #dee2e6;
    --border-lighter: #f3f3f3;
    --text-color: #495057;
    --text-muted: #6c757d;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-lighter: #ffffff;
    
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    --border-radius-xxl: 16px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 123, 255, 0.15);
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

* {
    font-family: inherit;
}

/* 공통 버튼 스타일 */
.btn-base {
    border: none;
    padding: 4px 12px 5px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition-fast);
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-success {
    background-color: var(--success-color);
    color: #fff;
}

.btn-success:hover {
    background-color: var(--success-hover);
}

.btn-danger {
    background-color: var(--danger-color);
    color: #fff;
}

.btn-danger:hover {
    background-color: var(--danger-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--bg-light);
    border-color: var(--text-muted);
    color: var(--text-color);
}

/* 버튼 크기 변형 */
.btn-sm {
    padding: 4px 8px;
    font-size: 11px;
}

.btn-lg {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* 공통 카드 컨테이너 스타일 */
.card {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body {
    padding: 20px;
}

/* 공통 Flexbox 유틸리티 클래스 */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* 공통 입력 필드 스타일 */
.input-base {
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    padding: 4px 8px;
    font-family: inherit;
    background: var(--bg-lighter);
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.input-base:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.input-base:disabled {
    background-color: var(--bg-light);
    color: var(--text-color);
    cursor: text;
}

.input-base::placeholder {
    color: var(--text-muted);
}

.container {
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.submit-btn {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 6px 10px;
    font-size: 18px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    text-align: center;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
}

.result {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    color: #555;
}

.token-count {
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.tabs {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #ccc;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #f9f9f9;
    color: #007bff;
    font-weight: bold;
}

.tab.active {
    background-color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

.filename {
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button-group {
    display: flex;
    align-items: center;
}

.original-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-right: 10px;
}

.original-btn:hover {
    background-color: var(--primary-hover);
}

.delete-btn {
    background-color: var(--danger-color);
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.delete-btn:hover {
    background-color: var(--danger-hover);
}

/* Progress Bar 스타일 */
.progress-bar {
    width: 100%;
    background-color: var(--border-lighter);
    border-radius: var(--border-radius);
    margin-top: 5px;
    height: 20px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    width: var(--progress-width, 0%);
    background-color: var(--progress-color, var(--primary-color));
    text-align: center;
    line-height: 20px;
    color: white;
    border-radius: var(--border-radius);
    font-size: 12px;
    /* 부드러운 애니메이션을 위한 transition */
    transition: width 0.2s ease-out, background-color 0.2s ease-out;
    /* 하드웨어 가속을 위한 transform */
    transform: translateZ(0);
    will-change: width, background-color;
}

.progress-barAll {
    padding-top: 15px;
}

.progress-barAll > div:nth-child(2) {
    background: var(--success-color);
}

.progress-barAll > div:nth-child(3) {
    background: var(--primary-hover);
}

/* 로딩 스피너 스타일 */
.loading-spinner {
	display: none;
	width: 40px;
	height: 40px;
	border: 4px solid var(--border-lighter);
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 학습 컨테이너 - 간소화된 구조 */
.study-container {
    text-align: center;
    padding: 20px;
}

/* study-box1 레이아웃 수정 - 위아래 배치로 변경 */
.study-box1 {
    flex-direction: column;
    background: #fff;
}

/* 학습된 영역 스타일 */
.study-box2 {
    margin-left: 5px;
    margin-right: 26px;
}

.study-box1 .left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.study-box1 .rt {
    flex: 0 0 auto; /* 자동 높이 */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.study-tit {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.study-tit a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.study-tit a:hover {
    color: #007bff;
}

.study-tit .addImageBtn {
	margin-left: 0;
}

/* 학습 아이템 컨테이너 */
#learningItemsContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

/* 개별 학습 아이템 스타일 */
.learning-item {
    width: 100%;
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* 학습 아이템 내부 레이아웃 */
.learning-item .text-boxes {
	display: flex;
	gap: 15px;
    padding: 12px;
    /* 고정 높이 대신 내용에 맞게 늘어나되 최소 높이 유지 */
    height: auto;
    min-height: 157px;
}

/* style.css의 padding-bottom 덮어쓰기 */
.learning-item .text-boxes > div {
	padding-bottom: 0px !important;
}

/* 768px 이하에서 height 자동 조정 */
@media (max-width: 768px) {
	.learning-item .text-boxes {
		height: auto;
	}
	
	.learning-item .content-header {
		margin-top: 15px;
	}
}

.learning-item .file-section {
	flex: 1;
	position: relative;
	height: 100%;
}

.learning-item .file {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.learning-item .ds-txt {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	max-height: none;
}

.learning-item .ds-tit {
	cursor: text;
}

.learning-item .ds-txt-con {
	overflow: auto;
	cursor: text;
    width: 100%;
	flex: 1 1 auto;
	min-height: 150px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden; /* 둥근 모서리 유지 */
	position: relative;
	box-sizing: border-box;
}

/* 업로드 영역 */
.learning-item .upload-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 150px;
	box-sizing: border-box;
}

/* 이미지 미리보기 영역 */
.learning-item .image-preview-area {
	display: none; /* 기본적으로 숨김 */
	align-items: center;
	justify-content: center;
	width: 100%;
	/* 내용(이미지) 높이에 맞춰 자동 확장 */
	height: auto;
	/* 로딩 중 또는 아주 작은 이미지일 때 높이 0 방지 */
	min-height: 120px;
	box-sizing: border-box;
}

/* 동영상 미리보기 중앙 정렬 */
.learning-item .image-preview-area video.preview-image {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.learning-item .preview-image {
	/* 작은 이미지는 원본 크기 유지, 큰 이미지는 최대 1200px까지 */
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 1200px;
	object-fit: contain; /* 컨테이너보다 넓을 때 비율 유지 */
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 업로드 아이콘 */
.learning-item .upload-icon {
	width: 60px !important;
	height: 60px !important;
	opacity: 0.7;
	transition: all 0.3s ease;
}

/* 텍스트 영역 */
.learning-item .textarea {
	width: 100%;
	height: 100%;
	padding: 10px;
	border: none; /* 컨테이너에서 테두리 처리 */
	border-radius: 0; /* 컨테이너에서 둥근 모서리 처리 */
	resize: none;
	font-size: 16px;
	box-sizing: border-box;
	/* 스크롤바를 테두리 안쪽으로 배치 */
	overflow-y: auto;
	scrollbar-width: auto;
	scrollbar-color: #ccc #f5f5f5;
	/* 스크롤바가 컨테이너 경계를 넘지 않도록 */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/* Webkit 브라우저용 스크롤바 스타일링 */
.learning-item .textarea::-webkit-scrollbar {
	width: 8px;
}

.learning-item .textarea::-webkit-scrollbar-track {
	background: #f5f5f5;
	border-radius: 0; /* 컨테이너와 일치 */
}

.learning-item .textarea::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 0; /* 컨테이너와 일치 */
}

.learning-item .textarea::-webkit-scrollbar-thumb:hover {
	background: #999;
}

/* 버튼 그룹 (기존 스타일 유지하되 action-buttons에서 사용) */
.learning-item .button-group {
	display: none; /* 기존 버튼 그룹 숨김 */
}

.learning-item .copy-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 8px 12px;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition-fast);
	font-size: 12px;
}

.learning-item .copy-btn:hover {
	background: var(--primary-hover);
}

.learning-item .copy-icon {
	width: 16px;
	height: 16px;
}

/* 콘텐츠 헤더 스타일 */
.learning-item .content-header {
    display: flex;
    align-items: center;
}

/* 파일명 섹션 스타일 */
.learning-item .filename-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0; /* flex 아이템이 축소될 수 있도록 */
}

.learning-item .filename-label {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    white-space: nowrap;
    min-width: 50px;
}

.learning-item .filename-input {
    flex: 1; 
    min-width: 150px; 
    margin-bottom: 4px;
    padding: 2px 8px;
    border-radius: var(--border-radius);
    font-family: inherit;
    background: var(--bg-lighter);
    transition: var(--transition-fast);
}

.learning-item .filename-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.learning-item .filename-input::placeholder {
    color: var(--text-muted);
}

/* 액션 버튼 그룹 스타일 */
.learning-item .action-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-shrink: 0; /* 버튼 그룹이 축소되지 않도록 */
    margin-top: 14px; /* 텍스트 영역과의 간격 */
    justify-content: space-between; /* 오른쪽 정렬 */
}
.learning-item .action-buttons > div{display: flex;}
.learning-item .action-buttons > div button{margin-right: 3px;}
/* TTS 버튼 스타일 */
.learning-item .speak-btn,
.learning-item .stop-btn {
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    padding: 6px 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.learning-item .speak-btn:hover,
.learning-item .stop-btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.learning-item .speak-btn img,
.learning-item .stop-btn img {
    width: 16px;
    height: 16px;
}

/* 볼륨 컨트롤 스타일 */
.learning-item .volume-control {
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.learning-item .volume-control input[type="range"] {
    height: 16px;
    background: #ddd;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

.learning-item .volume-control input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.learning-item .volume-control input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* 안내 섹션 스타일 */
.info-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border-radius: 16px;
    border: 2px dashed #cce7ff;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.info-section:hover {
    border-color: #007bff;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
}

.info-content h4 {
    color: #2c3e50;
    font-size: 22px;
    margin: 20px 0 15px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.info-content p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.7;
    margin: 12px 0;
    font-weight: 400;
}

.info-content p:last-child {
    color: #34495e;
    font-weight: 500;
    font-size: 14px;
}

/* 업로드 영역 개선된 스타일 */
.learning-item .file-cont {
    border: 2px dashed #e0e6ed !important;
    text-align: center;
    border-radius: 16px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box; /* 보더 포함하여 부모 너비 초과 방지 */
    flex: 1 1 auto; /* 남은 높이를 채우되 부모 높이 초과 금지 */
}

.learning-item .file-cont:hover {
    border-color: #007bff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.learning-item .file-cont .mask {
    margin-bottom: 20px;
}

.learning-item .file-cont .mask span {
    display: block;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 업로드 영역 텍스트 스타일 */
.learning-item .file-cont p {
    margin: 0;
    font-size: 14px;
}

.learning-item .file-cont p:first-of-type {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.learning-item .file-cont p:last-of-type {
    font-size: 13px;
    color: #6c757d;
}

/* 드래그 앤 드롭 상태 스타일 */
.learning-item .file-cont.dragover {
    border-color: #007bff !important;
    background: linear-gradient(135deg, #e8f0ff 0%, #d0e0ff 100%) !important;
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2);
}

.learning-item .file-cont.dragover img {
    transform: scale(1.1);
}

.learning-item .file-cont.dragover .mask span {
    color: #007bff;
    font-weight: 600;
}

/* 기본 버튼 스타일 */
.learning-item .regenerate-btn,.learning-item .nOedit-btn,
.learning-item .edit-btn {
    border-radius: 4px;
    border: 1px solid var(--btn-border-color, #ddd);
    background-color: var(--btn-bg-color, #fff);
    color: var(--btn-text-color, #333);
    padding: 6px 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}

/* 수정 버튼만 다른 색상 */
.learning-item .edit-btn {
    --btn-bg-color: #007bff;
    --btn-text-color: #e7f3ff;
}

/* 호버 효과 */
.learning-item .regenerate-btn:hover,
.learning-item .edit-btn:hover {
    background-color: var(--btn-hover-bg-color, #f8f9fa);
    color: var(--btn-hover-text-color, #495057);
}
.learning-item .nOedit-btn{display: none;}

.learning-item .edit-btn:hover {
    --btn-hover-bg-color: #0056b3;
    --btn-hover-text-color: #cce7ff;
}

/* 상세보기 영역 스타일 */
.queue-item {
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
}

.queue-item-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.queue-item-number {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.queue-item-status-header {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.queue-item-content {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.queue-item-image-section {
    flex: 0 0 200px;
}

.queue-item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.queue-item-description-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.queue-item-description {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 15px;
    min-height: 100px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.queue-item-description:hover {
    background: var(--border-color);
    border-color: var(--text-muted);
}

.queue-item-description.editing {
    background: var(--bg-lighter);
    border-color: var(--primary-color);
}

.queue-item-description.editing textarea {
    width: 100%;
    min-height: 80px;
    border: none;
    outline: none;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    background: transparent;
}

/* 수정과 취소 버튼은 다시 설명 버튼과 동일한 스타일 사용 */

/* 편집 모드 스타일 */
.learning-item .textarea.editing {
    border-color: #007bff !important;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.learning-item .save-btn {
    background: var(--success-color) !important;
    color: white !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: var(--border-radius) !important;
    cursor: pointer !important;
    font-size: 12px !important;
    margin-left: 5px !important;
    transition: var(--transition-fast) !important;
}

.learning-item .save-btn:hover {
    background: var(--success-hover) !important;
}

.learning-item .cancel-edit-btn {
    background: var(--secondary-color) !important;
    color: white !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: var(--border-radius) !important;
    cursor: pointer !important;
    font-size: 12px !important;
    margin-left: 5px !important;
    transition: var(--transition-fast) !important;
}

.learning-item .cancel-edit-btn:hover {
    background: var(--secondary-hover) !important;
}

/* disabled 상태의 입력 필드와 텍스트 영역 스타일 */
.learning-item .filename-input:disabled,
.learning-item .textarea:disabled {
    background-color: var(--bg-light);
    color: var(--text-color);
    cursor: text;
}

/* 수정 모드 스타일 */
.learning-item.editing-mode {
    border: 2px solid var(--primary-color);
    background-color: #f8f9ff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.learning-item.edit-mode-active .textarea {
    border-color: var(--primary-color);
    background-color: var(--bg-lighter);
}

.learning-item.edit-mode-active .filename-input {
    border-color: var(--primary-color);
    background-color: var(--bg-lighter);
}

/* -----------------------------------------------------------------------------
   학습 목록 테이블 스타일 보정
   - 새로 고침 시 tbody 전체가 thead 스타일(파란 배경)로 덮이는 현상 대응
----------------------------------------------------------------------------- */
.all-table-style table tbody tr td {
    background-color: #fff !important;
    color: inherit;
    transition: background-color 0.2s ease;
}


