/* 导入浅色系玻璃拟态主题 */


/* 自定义样式 */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* 导航栏样式 */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* 卡片样式 */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* 按钮样式 */
.btn {
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
}

/* 筛选按钮组样式修复 - 确保按钮组对齐和响应式布局 */
.card-header .btn-group {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* 确保多个按钮组在同一行对齐 */
.card-header.d-flex {
    flex-wrap: wrap;
}

/* 为状态筛选和分类筛选按钮组添加统一的底部对齐 */
.card-header .btn-group,
.card-header .btn-group-vertical {
    align-self: flex-end;
}

/* 表单样式 */
.form-control, .form-select {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Bug标题前缀选择样式 */
.form-control.pr-36 {
    padding-right: 9rem !important;
    position: relative;
}

/* 前缀按钮样式优化 - 确保在输入框内正确定位 */
.position-relative .dropdown-toggle.btn-outline-secondary {
    min-width: 60px;
    font-size: 0.875rem;
    z-index: 1050;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

/* 前缀下拉菜单样式 - 修复定位问题 */
.position-relative .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 0.125rem;
    z-index: 1050; /* 确保菜单在其他元素上方 */
}

/* 确保下拉菜单正确显示 */
.position-relative {
    z-index: 1; /* 确保父容器有z-index */
}

/* 前缀选项样式 */
.dropdown-menu .prefix-option {
    cursor: pointer;
}

.dropdown-menu .prefix-option:hover {
    background-color: #f8f9fa;
}

/* 前缀选择反馈样式 */
.prefix-feedback {
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 前缀按钮样式 */
#prefixButton {
    transition: all 0.2s ease;
}

#prefixButton:hover {
    transform: translateY(-1px);
}

/* 下拉菜单项高亮 */
.dropdown-item:hover {
    background-color: #e9ecef;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .form-control.pr-36 {
        padding-right: 7rem !important;
    }
    
    .position-relative .dropdown-toggle.btn-outline-secondary {
        min-width: 50px;
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* 标签样式 */
.badge {
    font-size: 0.75em;
    font-weight: 500;
    padding: 0.2em 0.4em;
    border-radius: 0.375rem;
    white-space: nowrap;
}

/* 前缀徽章样式 */
.prefix-badge, .bug-title span {
    display: inline-block !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    font-weight: bold !important;
    margin-right: 10px !important;
    color: white !important;
    background-color: #FF5733 !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
}

/* 确保在链接内部的前缀徽章也能正确显示 */
.bug-title {
    display: inline-block;
}

.bug-title:hover .prefix-badge, 
.bug-title:hover span {
    opacity: 0.9 !important;
    transform: scale(1.02) !important;
    transition: all 0.2s ease !important;
}

/* 角色徽章样式增强 - 使用后代选择器确保所有徽章都应用样式 */
.bilibili-comment-header .badge {
    font-size: 0.7em !important;
    padding: 0.15em 0.35em !important;
    margin-left: 4px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
}

/* 所有者徽章 */
.bilibili-comment-header .badge.bg-danger {
    background-color: #dc3545 !important;
    color: white !important;
    background-image: none !important;
}

/* 项目管理员徽章 */
.bilibili-comment-header .badge.bg-purple {
    background-color: #6f42c1 !important;
    color: white !important;
    background-image: none !important;
}

/* 版主徽章 */
.bilibili-comment-header .badge.bg-blue {
    background-color: #0d6efd !important;
    color: white !important;
    background-image: none !important;
}

/* 成员徽章 */
.bilibili-comment-header .badge.bg-green {
    background-color: #198754 !important;
    color: white !important;
    background-image: none !important;
}

/* 系统管理员徽章 */
.bilibili-comment-header .badge.bg-red {
    background-color: #dc3545 !important;
    color: white !important;
    background-image: none !important;
}

/* 提交者徽章 */
.bilibili-comment-header .badge.bg-orange {
    background-color: #fd7e14 !important;
    color: white !important;
    background-image: none !important;
}

/* Bug状态标签样式 - 增强版 */
.badge.status-open, .badge.status-待处理 {
    background-color: #22c55e;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
    transition: all 0.2s ease;
}

.badge.status-in-progress, .badge.status-处理中 {
    background-color: #f59e0b;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
    transition: all 0.2s ease;
}

.badge.status-resolved, .badge.status-已解决 {
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease;
}

.badge.status-closed, .badge.status-已关闭 {
    background-color: #64748b;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(100, 116, 139, 0.2);
    transition: all 0.2s ease;
}

/* Bug优先级标签样式 - 增强版 */
.badge.priority-low, .badge.priority-低 {
    background-color: #10b981;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    transition: all 0.2s ease;
}

.badge.priority-medium, .badge.priority-中 {
    background-color: #fbbf24;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.2);
    transition: all 0.2s ease;
}

.badge.priority-high, .badge.priority-高 {
    background-color: #f97316;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
    transition: all 0.2s ease;
}

.badge.priority-critical, .badge.priority-紧急 {
    background-color: #ef4444;
    color: white;
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
    transition: all 0.2s ease;
    animation: pulse-critical 2s infinite;
}

/* Bug分类标签样式 - 增强版 */
.badge[style*="background-color"] {
    font-weight: 600;
    padding: 0.35em 0.6em;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

/* 悬停效果 */
.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 紧急优先级脉冲动画 */
@keyframes pulse-critical {
    0% {
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    }
    100% {
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
    }
}

/* Logo 图片样式 */
.logo-image {
    max-height: 30px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* 英雄区域 */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* 统计卡片 */
.stats-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.stats-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-card .text-muted {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 项目卡片 */
.project-card {
    transition: transform 0.2s ease-in-out;
}

.project-card:hover {
    transform: translateY(-2px);
}

.project-meta {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Bug列表 */
.bug-item {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s ease;
}

.bug-item:hover {
    background-color: var(--light-color);
}

.bug-item:last-child {
    border-bottom: none;
}

.bug-title {
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
}

.bug-title:hover {
    color: var(--primary-color);
}

.bug-meta {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* 分页 */
.pagination {
    justify-content: center;
}

.page-link {
    color: var(--primary-color);
    border-color: #dee2e6;
}

.page-link:hover {
    color: #0056b3;
    background-color: var(--light-color);
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 表格样式 */
.table {
    background-color: white;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* 警告框 */
.alert {
    border: none;
    border-radius: 0.5rem;
}

.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
}

/* 文件上传区域 */
.file-upload-area {
    border: 2px dashed #ced4da;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.05);
}

/* 搜索框 */
.search-box {
    position: relative;
}

.search-box .form-control {
    padding-right: 2.5rem;
}

.search-box .search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stats-card h3 {
        font-size: 2rem;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin-top: 0.5rem;
    }
    
    /* 项目详情页移动端优化 */
    .project-details {
        flex-direction: column;
    }
    
    .project-details > div {
        margin-bottom: 1rem;
    }
    
    .bug-stats {
        flex-direction: column;
        align-items: center !important;
    }
    
    .bug-stat-item {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e9ecef;
    }
    
    .card {
        background-color: #2d3748;
        color: #e9ecef;
    }
    
    .card-header {
        background-color: #4a5568;
        border-bottom-color: #2d3748;
    }
    
    .table {
        background-color: #2d3748;
        color: #e9ecef;
    }
    
    .table th {
        background-color: #4a5568;
        color: #e9ecef;
    }
}

/* 工具提示 */
.tooltip {
    font-size: 0.875rem;
}

/* 进度条 */
.progress {
    height: 0.5rem;
    border-radius: 0.25rem;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 轮播组件样式已移至 carousel.css */

/* 调整卡片内容区域内边距，解决评论区间隔过大问题 */
.card-body {
    padding: 1rem;
}

/* 全新B站风格评论区样式 */
.bilibili-comment, .bilibili-reply {
    display: flex;
    padding: 8px 0;
    position: relative;
    margin: 0;
}

.bilibili-comment {
    border-bottom: 1px solid #f5f5f5;
}

.bilibili-reply {
    margin-left: 40px;
    padding: 8px 0;
}

.bilibili-comment-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 12px;
    overflow: hidden;
}

.bilibili-comment-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.bilibili-comment-body {
    flex: 1;
    min-width: 0;
}

.bilibili-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.bilibili-comment-username {
    font-size: 12px;
    color: #23ade5;
    font-weight: 500;
    margin-right: 8px;
}

.bilibili-reply-username {
    color: #23ade5;
    font-weight: 500;
}

.bilibili-comment-time {
    font-size: 11px;
    color: #999;
}

.bilibili-comment-content {
    font-size: 13px;
    line-height: 1.6;
    color: #222;
    word-wrap: break-word;
    white-space: normal;
    margin-bottom: 8px;
}

.bilibili-comment-actions {
    display: flex;
    align-items: center;
}

.bilibili-comment-action {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-right: 16px;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.bilibili-comment-action:hover {
    color: #23ade5;
}

.bilibili-comment-action i {
    margin-right: 4px;
    font-size: 12px;
}

/* 评论表单样式 */
.bilibili-comment-form {
    margin-top: 20px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.bilibili-comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-size: 13px;
    line-height: 1.5;
    resize: vertical;
    min-height: 80px;
}

.bilibili-comment-form textarea:focus {
    outline: none;
    border-color: #23ade5;
    box-shadow: 0 0 0 2px rgba(35, 173, 229, 0.1);
}

/* 评论分页样式 */
.bilibili-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 12px 0;
}

.bilibili-pagination .page-item {
    margin: 0 4px;
}

.bilibili-pagination .page-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    font-size: 12px;
    color: #999;
    border: 1px solid #ddd;
}

.bilibili-pagination .page-link:hover {
    color: #23ade5;
    border-color: #23ade5;
    background-color: transparent;
}

.bilibili-pagination .page-item.active .page-link {
    background-color: #23ade5;
    border-color: #23ade5;
    color: white;
}

/* 点赞动画 */
@keyframes bilibiliLikeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* 评论点赞按钮样式 */
.bilibili-comment-like {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.bilibili-comment-like:hover {
    background-color: #f5f5f5;
}

.bilibili-comment-like.liked {
    color: #ff6b6b;
}

.bilibili-comment-like.like-animation {
    animation: bilibiliLikeAnimation 0.3s ease-in-out;
}

/* 项目和Bug点赞按钮样式 */
.bilibili-like-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    border: 1px solid #ddd;
    color: #666;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

/* 项目详情页美化样式 */

/* 项目信息卡片 */
.project-card {
    position: relative;
    overflow: hidden;
}

/* 项目标题区域 */
.project-header {
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* 项目信息区域 */
.project-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-info {
    flex: 1;
    min-width: 300px;
}

/* 项目元数据 */
.project-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.project-meta-item {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.project-meta-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* 项目操作按钮组 */
.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Bug统计样式 */
.bug-stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.bug-stat-item {
    text-align: center;
    flex: 1;
    min-width: 60px;
    padding: 0.5rem;
}

.bug-stat-count {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.bug-stat-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Bug列表项美化 */
.bug-item {
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.bug-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    transform: translateX(-4px);
    transition: transform 0.2s ease;
}

.bug-item:hover {
    background-color: #f8f9fa;
    transform: translateX(4px);
}

.bug-item:hover::before {
    transform: translateX(0);
}

.bug-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.bug-title:hover {
    color: var(--primary-color);
}

/* 筛选按钮美化 */
.filter-btn {
    transition: all 0.2s ease;
}

.filter-btn.active {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* 分类标签增强 */
.category-badge {
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.category-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 空状态样式 */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--secondary-color);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* 分页样式增强 */
.pagination {
    margin-top: 2rem;
}

.page-item.active .page-link {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.3);
}

.bilibili-like-btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.bilibili-like-btn.liked {
    background-color: #fff0f0;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.bilibili-like-btn.like-animation {
    animation: bilibiliLikeAnimation 0.3s ease-in-out;
}

/* 点赞数量样式 - 放在按钮内部 */
.like-count {
    color: #666;
    font-size: 14px;
    margin-left: 4px;
    font-weight: normal;
}

/* 已点赞状态下的点赞数量颜色 */
.bilibili-like-btn.liked .like-count,
.bilibili-comment-like.liked .like-count {
    color: #ff6b6b;
}

/* 回复引用样式 */
.bilibili-reply-quote {
    background-color: #f5f5f5;
    padding: 6px 10px;
    border-radius: 4px;
    margin: 6px 0;
    font-size: 12px;
    color: #666;
    border-left: 2px solid #ddd;
}

/* 玻璃拟态效果样式 */
.glassmorphism-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
    transform: translateY(-2px);
}

.glass-card-header {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1rem;
    border-radius: 10px 10px 0 0;
}