/* 文档管理系统样式 */

/* 头像样式 */
.rounded-circle {
    border-radius: 50% !important;
}

/* 卡片样式 */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 导航栏样式 */
.navbar-brand {
    font-weight: bold;
}

/* 按钮样式 */
.btn {
    border-radius: 4px;
}

/* 表格样式 */
table th {
    font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* 文档图标 */
.document-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* 文件大小显示 */
.file-size {
    font-size: 0.875rem;
    color: #6c757d;
}

/* 标签样式 */
.badge {
    font-weight: normal;
}

/* 链接样式 */
.nav-link {
    font-weight: 500;
}

/* 主要内容区域 */
main.container {
    min-height: calc(100vh - 150px);
}

/* 页脚样式 */
footer {
    margin-top: auto;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* 消息提示样式 */
.alert {
    border: none;
    border-radius: 4px;
}

/* 表单样式 */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* 按钮悬停效果 */
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* 卡片高度统一 */
.card.h-100 {
    height: 100%;
}

/* 文档统计数字 */
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

/* 分类卡片 */
.category-card {
    border-left: 4px solid #007bff;
}

/* 搜索框样式 */
.search-box {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 用户头像 */
.user-avatar {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

/* 文档标题 */
.document-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* 文档描述 */
.document-description {
    color: #6c757d;
    font-size: 0.875rem;
}

/* 上传按钮 */
.upload-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* 响应式表格 */
.table-responsive {
    overflow-x: auto;
}

/* 模态框样式 */
.modal-content {
    border-radius: 8px;
}

/* 页码样式 */
.pagination .page-link {
    color: #007bff;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* 悬停效果 */
.hover-effect:hover {
    background-color: #f8f9fa;
}

/* 边距调整 */
.mt-6 {
    margin-top: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

/* 颜色调整 */
.text-primary {
    color: #007bff !important;
}

/* 背景调整 */
.bg-lighter {
    background-color: #f8f9fa;
}

/* 边框调整 */
.border-left-primary {
    border-left: 4px solid #007bff;
}

/* 阴影效果 */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.shadow {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

/* 圆角调整 */
.rounded-lg {
    border-radius: 0.5rem !important;
}

/* 字体大小调整 */
.fs-sm {
    font-size: 0.875rem;
}

.fs-lg {
    font-size: 1.125rem;
}

/* 字体粗细调整 */
.fw-medium {
    font-weight: 500;
}

/* 文本截断 */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 灵活居中 */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 垂直居中 */
.align-items-center {
    align-items: center;
}

/* 水平居中 */
.justify-content-center {
    justify-content: center;
}

/* 空间分布 */
.justify-content-between {
    justify-content: space-between;
}

/* 自动边距 */
.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

/* 高度调整 */
h-100 {
    height: 100%;
}

/* 宽度调整 */
w-100 {
    width: 100%;
}

/* 最小高度调整 */
.min-vh-100 {
    min-height: 100vh;
}

/* 位置调整 */
pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

/* 溢出处理 */
.overflow-hidden {
    overflow: hidden;
}

/* 显示调整 */
d-none {
    display: none;
}

d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

/* 浮动调整 */
.float-left {
    float: left;
}

.float-right {
    float: right;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 响应式显示 */
@media (max-width: 768px) {
    .d-md-none {
        display: none;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }
}

/* 打印样式 */
@media print {
    .no-print {
        display: none;
    }
}

/* 动画效果 */
.transition {
    transition: all 0.3s ease-in-out;
}

/* 可见性调整 */
.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/* 不透明度调整 */
.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

/* 指针样式 */
cursor-pointer {
    cursor: pointer;
}

cursor-not-allowed {
    cursor: not-allowed;
}

/* 用户选择 */
.user-select-none {
    user-select: none;
}

/* 文本选择 */
::selection {
    background-color: #007bff;
    color: #fff;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 响应式字体大小 */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* 默认字体 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

/* 链接样式 */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
}

/* 段落样式 */
p {
    margin-bottom: 1rem;
}

/* 列表样式 */
ul, ol {
    margin-bottom: 1rem;
}

/* 表格样式 */
table {
    width: 100%;
    margin-bottom: 1rem;
}

th, td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

/* 表单元素样式 */
.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* 按钮样式 */
.btn {
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* 卡片样式 */
.card {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 页脚样式 */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* 打印样式 */
@media print {
    body {
        font-size: 12pt;
    }
    
    .no-print {
        display: none !important;
    }
    
    .card {
        border: 1px solid #000;
        box-shadow: none;
    }
}