/* 北京卓学汇 - 自定义样式 */

/* 覆盖 Bootstrap 主色调 */
:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

/* 顶部区域 - 全屏宽度 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
    width: 100%;
}

.header .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .footer-logo {
    height: 64px;
}

.header .footer-brand h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.user-actions a {
    font-size: 24px;
    margin-left: 15px;
    color: var(--primary-color);
    text-decoration: none;
}

.search-box {
    display: flex;
}

.search-box input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 300px;
}

.search-box button {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.user-actions a {
    margin-left: 15px;
    color: var(--primary-color);
    text-decoration: none;
}

/* 导航栏 - 全屏宽度 */
.nav {
    background-color: #fff;
    color: #333;
    width: 100%;
}

.nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.nav li a {
    display: block;
    padding: 18px 22px;
    color: #333;
    text-decoration: none;
    font-size: 30px;
}

.nav li a:hover {
    background-color: #f0f0f0;
}

/* 第一屏：Banner + 产品分类 */
.first-screen {
    position: relative;
    height: 70vh;
    width: 100%;
}

/* Banner区域 */
.banner {
    height: 100%;
    background-color: #e0e0e0;
    position: relative;
    width: 100%;
}

.banner-slider {
    height: 100%;
    position: relative;
    width: 100%;
}

.banner-slide {
    height: 100%;
    display: none;
    background-size: cover;
    background-position: center;
    text-align: center;
    line-height: 400px;
    font-size: 36px;
    color: #fff;
}

.banner-slide.active {
    display: block;
}

/* 学校弹窗 - 校徽大图 */
.school-emblem-large {
    width: 135px;
    height: 135px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* 机构弹窗 - 校徽大图 */
.institution-emblem-large {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

/* 弹窗内的介绍内容 - 保留换行符 */
.intro-content-text {
    white-space: pre-wrap;
    word-break: break-word;
}

/* 产品分类 - 固定在第一屏 */
.left-sidebar {
    position: absolute;
    left: 0;
    top: 20px;
    width: 200px;
    background-color: rgba(255,255,255,0.95);
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

.banner-sidebar h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.banner-sidebar ul {
    list-style: none;
}

.banner-sidebar li a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.banner-sidebar li a:hover {
    color: var(--primary-color);
}

/* 主内容区域 */
.main-content {
    padding: 40px 0;
}

/* 快捷入口 - 左侧固定 */
.quick-entry {
    position: fixed;
    left: 20px;
    top: 70%;
    transform: translateY(-50%);
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 100;
}

.quick-entry a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.quick-entry a:last-child {
    border-bottom: none;
}

.quick-entry a:hover {
    color: var(--primary-color);
}

/* 数据统计 */
.stats {
    background-color: var(--primary-color);
    padding: 40px 0;
    width: 100%;
}

.stats .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    display: inline-block;
    width: 25%;
}

.stat-item .number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.stat-item .label {
    color: rgba(255,255,255,0.9);
}

/* 数据区域下方平铺装饰 */
.stats-decoration {
    position: relative;
    width: 100%;
}

.stats-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

/* 区域板块 */
.section {
    padding: 40px 0;
    background-color: #fff;
    margin: 20px 0;
    width: 100%;
}

.section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section h2 {
    margin-bottom: 20px;
    color: #333;
}

/* 服务网格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* 第四屏：面向家长服务 */
.parent-services {
    background-color: #f8f9fa;
    text-align: center;
}

.parent-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.parent-subtitle {
    color: #999;
    font-size: 16px;
    margin-bottom: 30px;
}

.parent-image {
    width: 100%;
    margin: 0 auto;
    height: 320px;
}

.parent-image a {
    display: block;
    height: 100%;
}

.parent-image > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.parent-image .three-images {
    display: flex;
    gap: 10px;
    justify-content: center;
    height: 100%;
}

.parent-image .three-images a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parent-image .three-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* 机构列表 */
.institution-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.institution-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.institution-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.institution-emblem {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.institution-name {
    margin-top: 12px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

/* 页脚 */
.footer {
    background-color: #2c3e50;
    color: #fff;
}

.footer-main {
    padding: 60px 0;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
}

.footer-slogan h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.footer-slogan p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-links {
    min-width: 120px;
}

.footer-links h4 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 18px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-qrcode {
    text-align: center;
}

.footer-qrcode h4 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: #fff;
}

.qrcode-placeholder {
    width: 120px;
    height: 120px;
    background-color: rgba(255,255,255,0.1);
    border: 1px dashed rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    overflow: hidden;
}

.qrcode-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
}

/* 登录/注册表单 */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 数据表格 */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.data-table th {
    background-color: #f5f5f5;
}

/* 表单样式 */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 筛选器 */
.region-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.region-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.region-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.region-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.pagination-info {
    color: #888;
    font-size: 14px;
    margin-right: 10px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
}

.pagination button.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* 名师宝库 - 打分机制说明 */
.score-rules {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 16px 24px;
    margin: 20px 0;
    border-radius: 4px;
    color: #5d4037;
    line-height: 1.9;
}
.score-rules h3 {
    margin: 0 0 8px 0;
    color: #e65100;
    font-size: 18px;
}
.score-rules p {
    margin: 2px 0;
}

/* 名师宝库 - 教师网格 */
.teacher-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.teacher-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}
.teacher-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.teacher-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    display: block;
    background: #f5f5f5;
}
.teacher-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
}
.teacher-gender {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}
.score-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.score-badge.s { background: #d32f2f; }
.score-badge.a { background: #f57c00; }
.score-badge.b { background: #1976d2; }
.score-badge.c { background: #616161; }
.score-badge.none { background: #bdbdbd; }

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.status-badge.allowed { background: #2e7d32; }
.status-badge.denied { background: #c62828; }
.status-badge.pending { background: #ef6c00; }

.empty-state {
    text-align: center;
    color: #999;
    padding: 60px 0;
    font-size: 15px;
}

/* 名师宝库 - 教师详情展示区 */
.teacher-detail-panel {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: none;
}
.teacher-detail-panel.active { display: block; }
.teacher-detail-panel .panel-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}
.teacher-video-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 20px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.teacher-video-wrap video {
    width: 100%;
    display: block;
    max-height: 420px;
    background: #000;
}
.teacher-detail-panel .detail-link {
    display: block;
    padding: 10px 0;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px dashed #eee;
}
.teacher-detail-panel .detail-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.teacher-detail-panel .detail-link.disabled {
    color: #bbb;
    pointer-events: none;
}
.teacher-detail-panel .contact-row {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}
.teacher-detail-panel .contact-row .contact-link {
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
}
.teacher-detail-panel .contact-row .contact-link:hover {
    color: var(--secondary-color);
}
.teacher-detail-panel .contact-row .phone-text {
    color: #d32f2f;
    font-weight: 600;
}
.teacher-rate-row {
    padding: 14px 0 0 0;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.rate-btn {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    min-width: 44px;
    height: 36px;
    padding: 0 10px;
    border-radius: 18px;
    border: 2px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
    user-select: none;
}
.rate-num {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.6;
}
.rate-btn:hover {
    transform: scale(1.08);
}
.rate-btn.s:hover, .rate-btn.s.active { background: #d32f2f; color: #fff; border-color: #d32f2f; }
.rate-btn.a:hover, .rate-btn.a.active { background: #f57c00; color: #fff; border-color: #f57c00; }
.rate-btn.b:hover, .rate-btn.b.active { background: #1976d2; color: #fff; border-color: #1976d2; }
.rate-btn.c:hover, .rate-btn.c.active { background: #616161; color: #fff; border-color: #616161; }
.rate-btn.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.rate-hint { color: #999; font-size: 13px; }
.teacher-card.selected {
    box-shadow: 0 0 0 3px var(--primary-color), 0 4px 12px rgba(0, 0, 0, 0.15);
}
.phone-modal-mask {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.4);
    display: none; align-items: center; justify-content: center; z-index: 9999;
}
.phone-modal-mask.show { display: flex; }
.phone-modal {
    background: #fff; border-radius: 10px; padding: 28px 32px;
    min-width: 320px; max-width: 90%; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    text-align: center;
}
.phone-modal h4 { margin: 0 0 14px 0; color: #333; font-size: 18px; }
.phone-modal .phone-display {
    font-size: 24px; color: #d32f2f; font-weight: 700;
    letter-spacing: 2px; margin: 16px 0;
    -webkit-user-select: all;
    user-select: all;
}
.phone-modal .modal-tip { color: #888; font-size: 13px; margin-bottom: 16px; }
.phone-modal .modal-close {
    background: var(--primary-color); color: #fff; border: none;
    padding: 8px 24px; border-radius: 4px; cursor: pointer; font-size: 14px;
}

/* 聊天/咨询页面 */
.chat-history {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.message {
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.message.me {
    background-color: var(--primary-color);
    color: #fff;
    margin-left: 50px;
}

.message.bot {
    background-color: #f5f5f5;
    margin-right: 50px;
}

/* 列表样式 */
.school-list, .policy-list, .article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.school-card, .policy-item, .article-item {
    padding: 15px;
    background-color: #f5f5f5;
}

/* 学校网格 */
.school-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.school-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.school-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.school-emblem {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.school-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.policy-item a, .article-item a {
    color: #333;
    text-decoration: none;
}

.policy-item a:hover, .article-item a:hover {
    color: var(--primary-color);
}

/* 论坛样式 */
.post-form {
    margin-bottom: 20px;
}

.post-form textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.post-form button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 咨询页面 */
.consultation-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
}

.welcome-message {
    padding: 15px;
    background-color: #e8f4fd;
    margin-bottom: 20px;
    border-radius: 4px;
}

.quick-replies {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-replies button {
    flex: 1;
    padding: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.input-area {
    display: flex;
    gap: 10px;
}

.input-area input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.input-area button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 详情页 */
.article-detail {
    background-color: #fff;
    padding: 30px;
}

.article-detail h1 {
    margin-bottom: 20px;
}

.article-detail .content {
    line-height: 1.8;
    margin-bottom: 20px;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
}

/* Bootstrap 覆盖 */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-grid,
    .institution-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-entry {
        display: none;
    }
}

/* 管理后台样式 */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-container .sidebar {
    width: 220px;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    flex-shrink: 0;
}

.admin-container .sidebar h2 {
    font-size: 18px;
    padding: 0 20px 20px;
    border-bottom: 1px solid #3d566e;
    margin-bottom: 10px;
}

.admin-container .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-container .sidebar li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background-color 0.3s;
}

.admin-container .sidebar li a:hover,
.admin-container .sidebar li a.active {
    background-color: #34495e;
    color: #fff;
}

.admin-container .content {
    flex: 1;
    padding: 30px;
    background-color: #f5f5f5;
}

.admin-container .content h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* 管理后台表格 */
.admin-table {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background-color: #3498db;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 500;
}

.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.admin-table tr:hover {
    background-color: #f8f9fa;
}

.admin-table .actions {
    display: flex;
    gap: 8px;
}

.admin-table .btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.admin-table .btn-edit {
    background-color: #3498db;
    color: #fff;
}

.admin-table .btn-delete {
    background-color: #e74c3c;
    color: #fff;
}

/* 管理后台表单 */
.admin-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 600px;
}

.admin-form .form-group {
    margin-bottom: 15px;
}

.admin-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.admin-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* 弹框头部/底部/关闭按钮 */
.modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0 8px;
}
.modal-close:hover {
    color: #333;
}
.modal-footer-row {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
