/* Document Management Page Styles */
.page-wrap {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Upload Box Styles */
    .upload-box {
        border: 1px solid #dee2e6;
        border-radius: 6px;
        background: #fff;
    }

    /* Drag and Drop Area */
    .drop-zone {
        border: 2px dashed #ced4da;
        border-radius: 6px;
        padding: 22px;
        text-align: center;
        color: #6c757d;
        background: #f8f9fa;
        cursor: pointer;
        user-select: none;
    }

    /* Dragover State */
    .drop-zone.dragover {
        background: #e9ecef;
        border-color: #adb5bd;
        color: #495057;
    }

    /* File Info Styles */
    .file-meta {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: 8px;
    }

    /* Selected File Name Styles */
    .selected-file {
        font-size: 0.95rem;
        color: #212529;
        margin-top: 10px;
        word-break: break-word;
    }

    /* Table: keep it simple */
    .table thead th {
        white-space: nowrap;
    }

    /* Badge Styles for Document Types */
    .type-badge {
        display: inline-block;
        border-radius: 4px;
        padding: 6px 10px;
        font-size: 12px;
        letter-spacing: .3px;
        font-weight: 600;
    }

    /* Prevent Type Cell Wrapping */
    .type-cell {
        white-space: nowrap;
    }

    /* Document Name Link Styles */
    .doc-name a {
        text-decoration: none;
    }

    /* Hover Effect for Document Name Links */
    .doc-name a:hover {
        text-decoration: underline;
    }

    /* Button Styles */
        .btn-primary {
        background-color: #e9f2f8;
        border-color: #d6e6f2;
        color: #1f4e79;
        }

    /* Hover Effect for Primary Button */
    .btn-primary:hover {
        background-color: #ddebf5;
        border-color: #c9deee;
        color: #1a446a;
    }

    /* Outline Secondary Button Styles */
    .btn-outline-secondary {
        color: #6c757d;
        border-color: #dee2e6;
    }

    /* Hover Effect for Outline Secondary Button */
    .btn-outline-secondary:hover {
        background-color: #f8f9fa;
    }