diff --git a/groups/Tapops/css/documents.css b/groups/Tapops/css/documents.css
index b4181e7..b0e6e35 100644
--- a/groups/Tapops/css/documents.css
+++ b/groups/Tapops/css/documents.css
@@ -1,1328 +1 @@
-/* ===========================================
- Document Hub & Dashboard Layout
- =========================================== */
-
-.documents-section {
- padding: 120px 5%;
- background: hsl(0, 0%, 100%);
-}
-
-.repo-dashboard-container {
- max-width: 1200px;
- margin: 0 auto;
- display: grid;
- grid-template-columns: 280px 1fr;
- gap: 40px;
- align-items: start;
-}
-
-/* --- Sidebar Styling --- */
-
-.repo-sidebar {
- position: sticky;
- top: 150px;
-}
-
-/* Mobile category dropdown wrapper (hidden on desktop) */
-.mobile-category-control-group {
- display: none !important;
-}
-
-.sidebar-title {
- font-size: 0.75rem;
- letter-spacing: 2px;
- font-weight: 800;
- color: #94a3b8;
- margin-bottom: 20px;
- text-transform: uppercase;
-}
-
-.document-filter-wrapper {
- display: flex;
- flex-direction: column;
- gap: 8px;
- margin-bottom: 30px;
-}
-
-/* Desktop: show buttons, hide dropdown */
-.filter-btn-group {
- display: flex;
- flex-direction: column;
- gap: 8px;
-}
-
-.filter-select-group {
- display: none;
-}
-
-.doc-filter-btn {
- text-align: left;
- padding: 14px 18px;
- background: white;
- border: 1px solid #e2e8f0;
- font-size: 0.85rem;
- font-weight: 700;
- color: var(--primary-blue);
- cursor: pointer;
- transition: all 0.2s ease;
- border-radius: 4px;
-}
-
-.doc-filter-btn.active {
- background: var(--primary-blue);
- color: white;
- border-color: var(--primary-blue);
- box-shadow: 0 4px 12px rgba(0, 49, 80, 0.15);
-}
-
-.doc-filter-btn:hover:not(.active) {
- border-color: var(--secondary-gold);
- background: #fffdf5;
-}
-
-/* --- Custom UI Dropdown --- */
-.custom-dropdown {
- position: relative;
- width: 100%;
-}
-
-.custom-dropdown-trigger {
- width: 100%;
- padding: 14px 18px;
- background: white;
- border: 1px solid #e2e8f0;
- border-radius: 4px;
- font-family: inherit;
- font-size: 0.9rem;
- font-weight: 700;
- color: var(--primary-blue);
- cursor: pointer;
- display: flex;
- justify-content: space-between;
- align-items: center;
- transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
-}
-
-.custom-dropdown-trigger:hover {
- border-color: var(--secondary-gold);
- background: #fffdf5;
-}
-
-.custom-dropdown-trigger:focus-visible {
- outline: none;
- border-color: var(--primary-blue);
- box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
-}
-
-.custom-dropdown-trigger .trigger-arrow {
- font-size: 0.8rem;
- transition: transform 0.25s ease;
- color: var(--primary-blue);
-}
-
-.custom-dropdown.active .custom-dropdown-trigger .trigger-arrow {
- transform: rotate(180deg);
-}
-
-.custom-dropdown.active .custom-dropdown-trigger {
- border-color: var(--primary-blue);
- box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
-}
-
-.custom-dropdown-menu {
- position: absolute;
- top: calc(100% + 6px);
- left: 0;
- right: 0;
- background: white;
- border: 1px solid #e2e8f0;
- border-radius: 6px;
- box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
- z-index: 100;
- opacity: 0;
- visibility: hidden;
- transform: translateY(-8px);
- transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
- overflow: hidden;
- max-height: 300px;
- overflow-y: auto;
-}
-
-.custom-dropdown.active .custom-dropdown-menu {
- opacity: 1;
- visibility: visible;
- transform: translateY(0);
-}
-
-.custom-dropdown-item {
- padding: 12px 18px;
- font-size: 0.88rem;
- font-weight: 600;
- color: #475569;
- cursor: pointer;
- transition: all 0.15s ease;
- display: flex;
- align-items: center;
- justify-content: space-between;
-}
-
-.custom-dropdown-item:hover {
- background: #f1f5f9;
- color: var(--primary-blue);
-}
-
-.custom-dropdown-item.active {
- background: #f0f7ff;
- color: var(--primary-blue);
- font-weight: 700;
-}
-
-/* Tick mark for selected item */
-.custom-dropdown-item.active::after {
- content: "\f00c";
- font-family: "Font Awesome 5 Free";
- font-weight: 900;
- font-size: 0.75rem;
- color: var(--primary-blue);
-}
-
-/* --- Filter Skeleton Loading --- */
-
-.filter-skeleton {
- display: flex;
- flex-direction: column;
- gap: 8px;
-}
-
-.filter-skeleton-item {
- height: 48px;
- border-radius: 4px;
- background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
- background-size: 200% 100%;
- animation: skeleton-shimmer 1.5s ease-in-out infinite;
-}
-
-.filter-skeleton-item.short {
- width: 70%;
-}
-
-@keyframes skeleton-shimmer {
- 0% { background-position: 200% 0; }
- 100% { background-position: -200% 0; }
-}
-
-.sidebar-info-box {
- background: #f1f5f9;
- padding: 20px;
- border-radius: 4px;
- display: flex;
- gap: 12px;
-}
-
-.sidebar-info-box i {
- color: var(--primary-blue);
- margin-top: 3px;
-}
-
-.sidebar-info-box p {
- font-size: 0.82rem;
- color: #64748b;
- line-height: 1.5;
-}
-
-/* --- Content Area & Search --- */
-
-.repo-main-content {
- min-height: 800px;
- min-width: 0;
-}
-
-.repo-content-header {
- display: flex;
- flex-direction: column;
- gap: 30px;
- margin-bottom: 50px;
-}
-
-.header-title-area .section-title {
- margin-bottom: 8px;
-}
-
-.section-subtitle {
- font-size: 0.95rem;
- color: #64748b;
- font-weight: 400;
-}
-
-.repo-controls {
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- gap: 24px;
- background: white;
- padding: 24px;
- border-radius: 8px;
- border: 1px solid #e2e8f0;
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
-}
-
-.search-container {
- flex: 1;
- min-width: 260px;
- max-width: 500px;
-}
-
-.search-input-group {
- position: relative;
- width: 100%;
-}
-
-.search-icon {
- position: absolute;
- left: 18px;
- top: 50%;
- transform: translateY(-50%);
- color: #94a3b8;
- font-size: 1rem;
-}
-
-#doc-search {
- width: 100%;
- padding: 16px 16px 16px 50px;
- background: white;
- border: 1px solid #e2e8f0;
- border-radius: 4px;
- font-size: 0.95rem;
- color: var(--primary-blue);
- transition: all 0.3s ease;
-}
-
-#doc-search:focus {
- outline: none;
-}
-
-/* --- Filter Controls --- */
-
-.filter-controls {
- display: flex;
- gap: 16px;
- align-items: flex-end;
-}
-
-.control-group {
- display: flex;
- flex-direction: column;
- gap: 8px;
-}
-
-.date-range-group {
- min-width: 300px;
- position: relative;
-}
-
-.control-label {
- font-size: 0.7rem;
- font-weight: 800;
- color: #94a3b8;
- text-transform: uppercase;
- letter-spacing: 0.5px;
-}
-
-.select-wrapper {
- position: relative;
- min-width: 140px;
-}
-
-#sort-filter-wrapper {
- position: relative;
- min-width: 140px;
-}
-
-.select-icon {
- position: absolute;
- left: 14px;
- top: 50%;
- transform: translateY(-50%);
- color: var(--primary-blue);
- font-size: 0.8rem;
- pointer-events: none;
-}
-
-/* --- Date Range Filter & Popover --- */
-.date-picker-trigger {
- width: 100%;
- padding: 14px 18px;
- background: white;
- border: 1px solid var(--border-color);
- border-radius: 4px;
- font-family: inherit;
- font-size: 0.9rem;
- font-weight: 700;
- color: var(--primary-blue);
- cursor: pointer;
- display: flex;
- justify-content: space-between;
- align-items: center;
- transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
-}
-
-.date-picker-trigger:hover {
- border-color: var(--secondary-gold);
- background: #fffdf5;
-}
-
-.date-picker-trigger:focus-visible {
- outline: none;
- border-color: var(--primary-blue);
- box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
-}
-
-.date-picker-trigger .trigger-left-content {
- display: flex;
- align-items: center;
- gap: 10px;
-}
-
-.date-picker-trigger .trigger-arrow {
- font-size: 0.8rem;
- transition: transform 0.25s ease;
- color: var(--primary-blue);
-}
-
-.date-range-group.active .date-picker-trigger .trigger-arrow {
- transform: rotate(180deg);
-}
-
-.date-range-group.active .date-picker-trigger {
- border-color: var(--primary-blue);
- box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
-}
-
-/* Backdrop */
-.date-picker-backdrop {
- display: none;
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- background: rgba(0, 0, 0, 0.4);
- backdrop-filter: blur(4px);
- z-index: 40;
-}
-
-/* Popover */
-.date-picker-popover {
- position: absolute;
- top: calc(100% + 6px);
- right: 0;
- width: 630px;
- background: white;
- border: 1px solid var(--border-color);
- border-radius: 8px;
- box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
- display: none;
- flex-direction: column;
- z-index: 45;
- overflow: hidden;
-}
-
-.date-range-group.active .date-picker-popover {
- display: flex;
-}
-
-/* Top Bar */
-.date-picker-top-bar {
- padding: 12px 16px;
- border-bottom: 1px solid var(--border-color);
- background: #f8fafc;
- display: flex;
- justify-content: flex-end;
-}
-
-.date-display-inputs {
- display: flex;
- align-items: center;
- gap: 8px;
-}
-
-.date-display-field input {
- width: 110px;
- padding: 6px 10px;
- border: 1px solid #cbd5e1;
- border-radius: 6px;
- font-size: 0.85rem;
- font-weight: 600;
- color: var(--primary-blue);
- text-align: center;
- background: white;
-}
-
-.date-picker-separator {
- color: #94a3b8;
- font-weight: 700;
-}
-
-/* Body */
-.date-picker-body {
- display: flex;
- background: white;
-}
-
-/* Calendar Pane */
-.calendar-container {
- flex: 1;
- padding: 16px;
-}
-
-.calendar-nav {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16px;
- padding: 0;
-}
-
-.month-labels {
- display: flex;
- gap: 90px;
- color: var(--primary-blue);
- font-size: 0.95rem;
-}
-
-.month-label {
- display: flex;
- align-items: center;
- gap: 6px;
- font-weight: 700;
-}
-
-.year-select-wrapper {
- position: relative;
- display: inline-flex;
- align-items: center;
- border-radius: 4px;
- transition: background 0.2s ease;
-}
-
-.year-select-wrapper:hover {
- background: #f1f5f9;
-}
-
-.calendar-year-select {
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- background: transparent;
- border: none;
- padding: 2px 16px 2px 6px;
- font-family: inherit;
- font-size: 0.95rem;
- font-weight: 700;
- color: var(--primary-blue);
- cursor: pointer;
- outline: none;
-}
-
-.year-select-wrapper .select-arrow {
- position: absolute;
- right: 4px;
- top: 50%;
- transform: translateY(-50%);
- font-size: 0.6rem;
- color: var(--primary-blue);
- pointer-events: none;
-}
-
-.nav-btn {
- background: transparent;
- border: none;
- color: #64748b;
- cursor: pointer;
- width: 28px;
- height: 28px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 50%;
- transition: all 0.2s ease;
-}
-
-.nav-btn:hover {
- background: #f1f5f9;
- color: var(--primary-blue);
-}
-
-.calendar-grids {
- display: flex;
- gap: 20px;
-}
-
-.calendar-grid-pane {
- flex: 1;
-}
-
-.day-headers {
- display: grid;
- grid-template-columns: repeat(7, 1fr);
- text-align: center;
- font-size: 0.72rem;
- font-weight: 700;
- color: #94a3b8;
- margin-bottom: 8px;
-}
-
-.days-container {
- display: grid;
- grid-template-columns: repeat(7, 1fr);
- row-gap: 4px;
- column-gap: 2px;
-}
-
-.day-cell {
- height: 32px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 0.82rem;
- font-weight: 600;
- color: #475569;
- cursor: pointer;
- border-radius: 4px;
- transition: all 0.15s ease;
- user-select: none;
-}
-
-.day-cell:hover {
- background: #f1f5f9;
- color: var(--primary-blue);
-}
-
-.day-cell.empty {
- pointer-events: none;
- visibility: hidden;
-}
-
-.day-cell.disabled {
- color: #cbd5e1;
- pointer-events: none;
-}
-
-.day-cell.range-start {
- background: var(--primary-blue) !important;
- color: white !important;
- border-radius: 4px 0 0 4px;
-}
-
-.day-cell.range-end {
- background: var(--primary-blue) !important;
- color: white !important;
- border-radius: 0 4px 4px 0;
-}
-
-.day-cell.range-start.range-end {
- border-radius: 4px !important;
-}
-
-.day-cell.range-between {
- background: #eff6ff !important;
- color: var(--primary-blue) !important;
- border-radius: 0;
-}
-
-/* Presets Pane */
-.presets-container {
- width: 190px;
- border-left: 1px solid var(--border-color);
- padding: 16px;
- background: white;
- display: flex;
- flex-direction: column;
- gap: 12px;
-}
-
-.presets-title {
- font-size: 0.7rem;
- font-weight: 800;
- color: #94a3b8;
- text-transform: uppercase;
- letter-spacing: 0.5px;
- margin-bottom: 4px;
- display: block;
-}
-
-.presets-list {
- display: flex;
- flex-direction: column;
- gap: 4px;
- max-height: 240px;
- overflow-y: auto;
-}
-
-.preset-btn {
- background: transparent;
- border: none;
- text-align: left;
- padding: 8px 12px;
- font-size: 0.8rem;
- font-weight: 600;
- color: #475569;
- border-radius: 4px;
- cursor: pointer;
- transition: all 0.2s ease;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-family: inherit;
-}
-
-.preset-btn:hover {
- background: #f8fafc;
- color: var(--primary-blue);
-}
-
-.preset-btn.active {
- background: #eff6ff;
- color: var(--primary-blue);
-}
-
-.preset-btn.active::after {
- content: '✓';
- font-weight: 700;
- color: var(--primary-blue);
- font-size: 0.85rem;
-}
-
-/* Footer Action Buttons */
-.date-picker-footer {
- display: flex;
- justify-content: flex-end;
- gap: 12px;
- padding: 12px 16px;
- border-top: 1px solid var(--border-color);
- background: #f8fafc;
-}
-
-.action-btn {
- padding: 8px 20px;
- font-size: 0.85rem;
- font-weight: 700;
- border-radius: 6px;
- cursor: pointer;
- transition: all 0.2s ease;
- font-family: inherit;
-}
-
-.cancel-btn {
- background: white;
- border: 1px solid #cbd5e1;
- color: #475569;
-}
-
-.cancel-btn:hover {
- background: #f1f5f9;
- border-color: #94a3b8;
- color: #1e293b;
-}
-
-.apply-btn {
- background: var(--primary-blue);
- border: 1px solid var(--primary-blue);
- color: white;
-}
-
-.apply-btn:hover {
- background: #002238;
- border-color: #002238;
-}
-
-.range-divider {
- font-size: 0.7rem;
- font-weight: 800;
- color: #94a3b8;
- text-transform: uppercase;
- padding: 0 4px;
-}
-
-.filter-select,
-select#sort-filter {
- width: 100%;
- padding: 12px 12px 12px 36px;
- background: #f8fafc;
- border: 1px solid #e2e8f0;
- border-radius: 4px;
- font-size: 0.85rem;
- font-weight: 700;
- color: var(--primary-blue);
- cursor: pointer;
- appearance: none;
- transition: all 0.2s ease;
-}
-
-.filter-select:hover,
-select#sort-filter:hover {
- border-color: var(--secondary-gold);
- background: white;
-}
-
-.filter-select:focus,
-select#sort-filter:focus {
- outline: none;
-}
-
-/* --- Document Cards Grid --- */
-
-.document-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
- gap: 24px;
-}
-
-.document-card {
- background: white;
- border: 1px solid #e2e8f0;
- padding: 30px;
- display: flex;
- flex-direction: column;
- transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
- border-radius: 4px;
-}
-
-.document-card:hover {
- border-color: var(--secondary-gold);
- box-shadow: 0 20px 40px rgba(0, 49, 80, 0.05);
- transform: translateY(-5px);
-}
-
-.doc-type-icon {
- font-size: 2.2rem;
- margin-bottom: 20px;
-}
-
-.doc-type-pdf {
- color: #ef4444;
-}
-
-.doc-type-docx {
- color: #3b82f6;
-}
-
-.doc-title {
- font-size: 1.15rem;
- font-weight: 800;
- color: var(--primary-blue);
- margin-bottom: 12px;
- line-height: 1.4;
-}
-
-.doc-meta {
- display: flex;
- gap: 8px;
- margin-bottom: 25px;
- flex-wrap: wrap;
-}
-
-.doc-badge {
- font-size: 0.65rem;
- font-weight: 800;
- padding: 4px 10px;
- background: #f1f5f9;
- color: #64748b;
- text-transform: uppercase;
-}
-
-.doc-badge.date {
- background: hsl(200, 95%, 95%);
- color: hsl(200, 95%, 30%);
-}
-
-/* --- Tag Badges --- */
-
-.doc-tags {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- gap: 6px;
- margin-bottom: 20px;
-}
-
-.doc-tags-icon {
- font-size: 0.7rem;
- color: #94a3b8;
- margin-right: 2px;
-}
-
-.doc-tag {
- font-size: 0.65rem;
- font-weight: 700;
- padding: 3px 10px;
- background: hsl(43, 100%, 95%);
- color: hsl(43, 80%, 35%);
- border: 1px solid hsl(43, 80%, 85%);
- border-radius: 20px;
- text-transform: lowercase;
- letter-spacing: 0.3px;
- transition: all 0.2s ease;
-}
-
-.doc-tag:hover {
- background: hsl(43, 80%, 88%);
- border-color: hsl(43, 80%, 70%);
-}
-
-.doc-actions {
- margin-top: auto;
- display: flex;
- flex-direction: column;
- gap: 10px;
-}
-
-.btn-action-primary,
-.btn-action-outline {
- padding: 12px;
- text-align: center;
- text-decoration: none;
- font-weight: 800;
- font-size: 0.75rem;
- letter-spacing: 0.5px;
- text-transform: uppercase;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 8px;
- transition: all 0.2s ease;
- border-radius: 4px;
- width: 100%;
-}
-
-a.btn-action-primary {
- background: var(--primary-blue);
- color: white;
- border: 1px solid var(--primary-blue);
-}
-
-a.btn-action-primary:hover {
- background: var(--secondary-gold);
- border-color: var(--secondary-gold);
- color: var(--primary-blue);
-}
-
-a.btn-action-outline {
- background: transparent;
- color: var(--primary-blue);
- border: 1px solid #e2e8f0;
-}
-
-a.btn-action-outline:hover {
- border-color: var(--primary-blue);
- background: #f8fafc;
-}
-
-/* ===========================================
- Responsive — Tablet (≤1024px)
- =========================================== */
-
-@media (max-width: 1024px) {
- .repo-dashboard-container {
- grid-template-columns: 1fr;
- }
-
- .repo-sidebar {
- display: none;
- }
-
- .mobile-category-control-group {
- display: flex !important;
- flex-direction: column;
- gap: 8px;
- }
-
- /* Mobile: show dropdown */
- .filter-select-group {
- display: block;
- }
-
- /* Skeleton single bar on mobile */
- .filter-skeleton {
- flex-direction: column;
- }
-
- .filter-skeleton-item {
- height: 48px;
- }
-
- .filter-skeleton-item.short {
- display: none;
- }
-
- .filter-skeleton-item:not(.short) ~ .filter-skeleton-item:not(.short) {
- display: none;
- }
-
- .repo-controls {
- flex-direction: column;
- align-items: stretch;
- }
-
- .search-container {
- max-width: 100%;
- }
-
- .filter-controls {
- justify-content: flex-start;
- }
-
- .control-group {
- flex: 1;
- }
-}
-
-/* ===========================================
- Responsive — Tablet / Large Phone (≤768px)
- =========================================== */
-
-@media (max-width: 768px) {
- .documents-section {
- padding: 80px 16px;
- }
-
- .repo-content-header {
- gap: 20px;
- margin-bottom: 30px;
- }
-
- .repo-controls {
- padding: 16px;
- gap: 16px;
- }
-
- #doc-search {
- padding: 14px 14px 14px 44px;
- font-size: 0.88rem;
- }
-
- .filter-controls {
- flex-direction: column;
- gap: 12px;
- }
-
- .control-group {
- width: 100%;
- }
-
- .date-range-group {
- min-width: 0;
- position: relative;
- }
-
- body.date-picker-open {
- overflow: hidden;
- }
-
- body.date-picker-open .date-picker-backdrop {
- display: block;
- z-index: 998;
- }
-
- .date-picker-popover {
- /* Default mobile popover positioning inside media query is overridden below,
- but let's define the base transitions or layouts. */
- }
-
- @media (max-width: 768px) {
- .date-picker-popover {
- position: fixed;
- top: 50%;
- left: 50%;
- right: auto;
- transform: translate(-50%, -50%);
- width: calc(100% - 32px);
- max-width: 380px;
- max-height: 90vh;
- overflow-y: auto;
- border-radius: 12px;
- box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
- z-index: 999;
- }
-
- .date-picker-top-bar {
- justify-content: center;
- }
-
- .calendar-grids {
- gap: 0;
- }
-
- #right-calendar-pane {
- display: none;
- }
-
- .month-labels {
- gap: 0;
- justify-content: center;
- flex: 1;
- }
-
- #right-month-label {
- display: none;
- }
-
- .date-picker-body {
- flex-direction: column;
- }
-
- .presets-container {
- width: 100%;
- border-left: none;
- border-top: 1px solid var(--border-color);
- padding: 12px 16px;
- }
-
- .presets-list {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 6px;
- max-height: none;
- }
-
- .preset-btn {
- padding: 6px 10px;
- font-size: 0.75rem;
- }
- }
-
- .select-wrapper,
- #sort-filter-wrapper {
- min-width: 0;
- width: 100%;
- }
-
- /* Cards: 2-column when space permits, else single */
- .document-grid {
- grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
- gap: 16px;
- }
-
- .document-card {
- padding: 22px;
- }
-
- .document-card:hover {
- transform: none;
- }
-
- .doc-type-icon {
- font-size: 1.8rem;
- margin-bottom: 14px;
- }
-
- .doc-title {
- font-size: 1rem;
- }
-
- .doc-meta {
- margin-bottom: 16px;
- }
-
- .doc-tags {
- margin-bottom: 14px;
- }
-
- .repo-main-content {
- min-height: 400px;
- }
-}
-
-/* ===========================================
- Responsive — Phone (≤480px)
- =========================================== */
-
-@media (max-width: 480px) {
- .date-dd, .date-mm {
- width: 26px;
- }
-
- .date-yyyy {
- min-width: 38px;
- }
-
- .date-calendar-btn {
- padding-left: 4px;
- font-size: 0.82rem;
- }
-}
-
-/* ===========================================
- Pagination
- =========================================== */
-
-.doc-pagination {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 32px 0 0;
- gap: 16px;
- flex-wrap: wrap;
-}
-
-.pagination-info {
- font-size: 0.75rem;
- font-weight: 800;
- color: #94a3b8;
- text-transform: uppercase;
- letter-spacing: 0.5px;
-}
-
-.pagination-nav {
- display: flex;
- align-items: center;
- gap: 6px;
-}
-
-.pagination-btn {
- min-width: 40px;
- height: 40px;
- padding: 0 10px;
- border: 1px solid #e2e8f0;
- background: white;
- color: var(--primary-blue);
- font-size: 0.85rem;
- font-weight: 700;
- cursor: pointer;
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all 0.2s ease;
- font-family: inherit;
-}
-
-.pagination-btn:hover:not(.disabled):not(.active) {
- border-color: var(--secondary-gold);
- background: #fffdf5;
-}
-
-.pagination-btn.active {
- background: var(--primary-blue);
- border-color: var(--primary-blue);
- color: white;
-}
-
-.pagination-btn.disabled {
- opacity: 0.4;
- cursor: not-allowed;
- pointer-events: none;
-}
-
-.pagination-ellipsis {
- min-width: 32px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #94a3b8;
- font-weight: 700;
- font-size: 1rem;
- letter-spacing: 1px;
-}
-
-@media (max-width: 768px) {
- .doc-pagination {
- flex-direction: column;
- align-items: center;
- gap: 12px;
- }
-}
-
-@media (max-width: 480px) {
- .pagination-btn {
- min-width: 36px;
- height: 36px;
- font-size: 0.8rem;
- }
-
- .pagination-nav {
- gap: 4px;
- }
-}
-
-/* ===========================================
- Responsive — Phone (≤480px)
- =========================================== */
-
-@media (max-width: 480px) {
- .documents-section {
- padding: 50px 12px;
- }
-
- .custom-dropdown-trigger {
- padding: 12px 14px;
- font-size: 0.85rem;
- }
-
- /* Single column cards */
- .document-grid {
- grid-template-columns: 1fr;
- gap: 12px;
- }
-
- .document-card {
- padding: 18px;
- }
-
- .doc-title {
- font-size: 0.95rem;
- margin-bottom: 8px;
- }
-
- .doc-type-icon {
- font-size: 1.5rem;
- margin-bottom: 10px;
- }
-
- .doc-meta {
- margin-bottom: 12px;
- }
-
- .doc-tags {
- margin-bottom: 10px;
- gap: 4px;
- }
-
- .doc-tag {
- font-size: 0.6rem;
- padding: 2px 8px;
- }
-
- .btn-action-primary,
- .btn-action-outline {
- padding: 10px;
- font-size: 0.7rem;
- }
-
- .doc-actions {
- gap: 8px;
- }
-
- .repo-controls {
- padding: 12px;
- gap: 12px;
- }
-
- #doc-search {
- padding: 12px 12px 12px 40px;
- font-size: 0.85rem;
- }
-
- .search-icon {
- left: 14px;
- font-size: 0.9rem;
- }
-
- .repo-content-header {
- gap: 16px;
- margin-bottom: 20px;
- }
-}
+@import url("repository/index.css");
diff --git a/groups/Tapops/css/repository/cards.css b/groups/Tapops/css/repository/cards.css
new file mode 100644
index 0000000..fdb7f39
--- /dev/null
+++ b/groups/Tapops/css/repository/cards.css
@@ -0,0 +1,147 @@
+/* --- Document Cards Grid --- */
+
+.document-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
+ gap: 24px;
+}
+
+.document-card {
+ background: white;
+ border: 1px solid #e2e8f0;
+ padding: 30px;
+ display: flex;
+ flex-direction: column;
+ transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
+ border-radius: 4px;
+}
+
+.document-card:hover {
+ border-color: var(--secondary-gold);
+ box-shadow: 0 20px 40px rgba(0, 49, 80, 0.05);
+ transform: translateY(-5px);
+}
+
+.doc-type-icon {
+ font-size: 2.2rem;
+ margin-bottom: 20px;
+}
+
+.doc-type-pdf {
+ color: #ef4444;
+}
+
+.doc-type-docx {
+ color: #3b82f6;
+}
+
+.doc-title {
+ font-size: 1.15rem;
+ font-weight: 800;
+ color: var(--primary-blue);
+ margin-bottom: 12px;
+ line-height: 1.4;
+}
+
+.doc-meta {
+ display: flex;
+ gap: 8px;
+ margin-bottom: 25px;
+ flex-wrap: wrap;
+}
+
+.doc-badge {
+ font-size: 0.65rem;
+ font-weight: 800;
+ padding: 4px 10px;
+ background: #f1f5f9;
+ color: #64748b;
+ text-transform: uppercase;
+}
+
+.doc-badge.date {
+ background: hsl(200, 95%, 95%);
+ color: hsl(200, 95%, 30%);
+}
+
+/* --- Tag Badges --- */
+
+.doc-tags {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ gap: 6px;
+ margin-bottom: 20px;
+}
+
+.doc-tags-icon {
+ font-size: 0.7rem;
+ color: #94a3b8;
+ margin-right: 2px;
+}
+
+.doc-tag {
+ font-size: 0.65rem;
+ font-weight: 700;
+ padding: 3px 10px;
+ background: hsl(43, 100%, 95%);
+ color: hsl(43, 80%, 35%);
+ border: 1px solid hsl(43, 80%, 85%);
+ border-radius: 20px;
+ text-transform: lowercase;
+ letter-spacing: 0.3px;
+ transition: all 0.2s ease;
+}
+
+.doc-tag:hover {
+ background: hsl(43, 80%, 88%);
+ border-color: hsl(43, 80%, 70%);
+}
+
+.doc-actions {
+ margin-top: auto;
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+}
+
+.btn-action-primary,
+.btn-action-outline {
+ padding: 12px;
+ text-align: center;
+ text-decoration: none;
+ font-weight: 800;
+ font-size: 0.75rem;
+ letter-spacing: 0.5px;
+ text-transform: uppercase;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 8px;
+ transition: all 0.2s ease;
+ border-radius: 4px;
+ width: 100%;
+}
+
+a.btn-action-primary {
+ background: var(--primary-blue);
+ color: white;
+ border: 1px solid var(--primary-blue);
+}
+
+a.btn-action-primary:hover {
+ background: var(--secondary-gold);
+ border-color: var(--secondary-gold);
+ color: var(--primary-blue);
+}
+
+a.btn-action-outline {
+ background: transparent;
+ color: var(--primary-blue);
+ border: 1px solid #e2e8f0;
+}
+
+a.btn-action-outline:hover {
+ border-color: var(--primary-blue);
+ background: #f8fafc;
+}
diff --git a/groups/Tapops/css/repository/controls.css b/groups/Tapops/css/repository/controls.css
new file mode 100644
index 0000000..b05577c
--- /dev/null
+++ b/groups/Tapops/css/repository/controls.css
@@ -0,0 +1,117 @@
+/* --- Content Area & Search --- */
+
+.repo-main-content {
+ min-height: 800px;
+ min-width: 0;
+}
+
+.repo-content-header {
+ display: flex;
+ flex-direction: column;
+ gap: 30px;
+ margin-bottom: 50px;
+}
+
+.header-title-area .section-title {
+ margin-bottom: 8px;
+}
+
+.section-subtitle {
+ font-size: 0.95rem;
+ color: #64748b;
+ font-weight: 400;
+}
+
+.repo-controls {
+ display: flex;
+ justify-content: space-between;
+ align-items: flex-end;
+ gap: 24px;
+ background: white;
+ padding: 24px;
+ border-radius: 8px;
+ border: 1px solid #e2e8f0;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
+}
+
+.search-container {
+ flex: 1;
+ min-width: 260px;
+ max-width: 500px;
+}
+
+.search-input-group {
+ position: relative;
+ width: 100%;
+}
+
+.search-icon {
+ position: absolute;
+ left: 18px;
+ top: 50%;
+ transform: translateY(-50%);
+ color: #94a3b8;
+ font-size: 1rem;
+}
+
+#doc-search {
+ width: 100%;
+ padding: 16px 16px 16px 50px;
+ background: white;
+ border: 1px solid #e2e8f0;
+ border-radius: 4px;
+ font-size: 0.95rem;
+ color: var(--primary-blue);
+ transition: all 0.3s ease;
+}
+
+#doc-search:focus {
+ outline: none;
+}
+
+/* --- Filter Controls --- */
+
+.filter-controls {
+ display: flex;
+ gap: 16px;
+ align-items: flex-end;
+}
+
+.control-group {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+}
+
+.date-range-group {
+ min-width: 300px;
+ position: relative;
+}
+
+.control-label {
+ font-size: 0.7rem;
+ font-weight: 800;
+ color: #94a3b8;
+ text-transform: uppercase;
+ letter-spacing: 0.5px;
+}
+
+.select-wrapper {
+ position: relative;
+ min-width: 140px;
+}
+
+#sort-filter-wrapper {
+ position: relative;
+ min-width: 140px;
+}
+
+.select-icon {
+ position: absolute;
+ left: 14px;
+ top: 50%;
+ transform: translateY(-50%);
+ color: var(--primary-blue);
+ font-size: 0.8rem;
+ pointer-events: none;
+}
diff --git a/groups/Tapops/css/repository/date-picker.css b/groups/Tapops/css/repository/date-picker.css
new file mode 100644
index 0000000..9afcb6b
--- /dev/null
+++ b/groups/Tapops/css/repository/date-picker.css
@@ -0,0 +1,422 @@
+/* --- Date Range Filter & Popover --- */
+.date-picker-trigger {
+ width: 100%;
+ padding: 14px 18px;
+ background: white;
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+ font-family: inherit;
+ font-size: 0.9rem;
+ font-weight: 700;
+ color: var(--primary-blue);
+ cursor: pointer;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
+}
+
+.date-picker-trigger:hover {
+ border-color: var(--secondary-gold);
+ background: #fffdf5;
+}
+
+.date-picker-trigger:focus-visible {
+ outline: none;
+ border-color: var(--primary-blue);
+ box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
+}
+
+.date-picker-trigger .trigger-left-content {
+ display: flex;
+ align-items: center;
+ gap: 10px;
+}
+
+.date-picker-trigger .trigger-arrow {
+ font-size: 0.8rem;
+ transition: transform 0.25s ease;
+ color: var(--primary-blue);
+}
+
+.date-range-group.active .date-picker-trigger .trigger-arrow {
+ transform: rotate(180deg);
+}
+
+.date-range-group.active .date-picker-trigger {
+ border-color: var(--primary-blue);
+ box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
+}
+
+/* Backdrop */
+.date-picker-backdrop {
+ display: none;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ background: rgba(0, 0, 0, 0.4);
+ backdrop-filter: blur(4px);
+ z-index: 40;
+}
+
+/* Popover */
+.date-picker-popover {
+ position: absolute;
+ top: calc(100% + 6px);
+ right: 0;
+ width: 630px;
+ background: white;
+ border: 1px solid var(--border-color);
+ border-radius: 8px;
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
+ display: none;
+ flex-direction: column;
+ z-index: 45;
+ overflow: hidden;
+}
+
+.date-range-group.active .date-picker-popover {
+ display: flex;
+}
+
+/* Top Bar */
+.date-picker-top-bar {
+ padding: 12px 16px;
+ border-bottom: 1px solid var(--border-color);
+ background: #f8fafc;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.date-display-inputs {
+ display: flex;
+ align-items: center;
+ gap: 8px;
+}
+
+.date-display-field input {
+ width: 110px;
+ padding: 6px 10px;
+ border: 1px solid #cbd5e1;
+ border-radius: 6px;
+ font-size: 0.85rem;
+ font-weight: 600;
+ color: var(--primary-blue);
+ text-align: center;
+ background: white;
+}
+
+.date-picker-separator {
+ color: #94a3b8;
+ font-weight: 700;
+}
+
+/* Body */
+.date-picker-body {
+ display: flex;
+ background: white;
+}
+
+/* Calendar Pane */
+.calendar-container {
+ flex: 1;
+ padding: 16px;
+}
+
+.calendar-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+ padding: 0;
+}
+
+.month-labels {
+ display: flex;
+ gap: 90px;
+ color: var(--primary-blue);
+ font-size: 0.95rem;
+}
+
+.month-label {
+ display: flex;
+ align-items: center;
+ gap: 6px;
+ font-weight: 700;
+}
+
+.year-select-wrapper {
+ position: relative;
+ display: inline-flex;
+ align-items: center;
+ border-radius: 4px;
+ transition: background 0.2s ease;
+}
+
+.year-select-wrapper:hover {
+ background: #f1f5f9;
+}
+
+.calendar-year-select {
+ appearance: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ background: transparent;
+ border: none;
+ padding: 2px 16px 2px 6px;
+ font-family: inherit;
+ font-size: 0.95rem;
+ font-weight: 700;
+ color: var(--primary-blue);
+ cursor: pointer;
+ outline: none;
+}
+
+.year-select-wrapper .select-arrow {
+ position: absolute;
+ right: 4px;
+ top: 50%;
+ transform: translateY(-50%);
+ font-size: 0.6rem;
+ color: var(--primary-blue);
+ pointer-events: none;
+}
+
+.nav-btn {
+ background: transparent;
+ border: none;
+ color: #64748b;
+ cursor: pointer;
+ width: 28px;
+ height: 28px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 50%;
+ transition: all 0.2s ease;
+}
+
+.nav-btn:hover {
+ background: #f1f5f9;
+ color: var(--primary-blue);
+}
+
+.calendar-grids {
+ display: flex;
+ gap: 20px;
+}
+
+.calendar-grid-pane {
+ flex: 1;
+}
+
+.day-headers {
+ display: grid;
+ grid-template-columns: repeat(7, 1fr);
+ text-align: center;
+ font-size: 0.72rem;
+ font-weight: 700;
+ color: #94a3b8;
+ margin-bottom: 8px;
+}
+
+.days-container {
+ display: grid;
+ grid-template-columns: repeat(7, 1fr);
+ row-gap: 4px;
+ column-gap: 2px;
+}
+
+.day-cell {
+ height: 32px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 0.82rem;
+ font-weight: 600;
+ color: #475569;
+ cursor: pointer;
+ border-radius: 4px;
+ transition: all 0.15s ease;
+ user-select: none;
+}
+
+.day-cell:hover {
+ background: #f1f5f9;
+ color: var(--primary-blue);
+}
+
+.day-cell.empty {
+ pointer-events: none;
+ visibility: hidden;
+}
+
+.day-cell.disabled {
+ color: #cbd5e1;
+ pointer-events: none;
+}
+
+.day-cell.range-start {
+ background: var(--primary-blue) !important;
+ color: white !important;
+ border-radius: 4px 0 0 4px;
+}
+
+.day-cell.range-end {
+ background: var(--primary-blue) !important;
+ color: white !important;
+ border-radius: 0 4px 4px 0;
+}
+
+.day-cell.range-start.range-end {
+ border-radius: 4px !important;
+}
+
+.day-cell.range-between {
+ background: #eff6ff !important;
+ color: var(--primary-blue) !important;
+ border-radius: 0;
+}
+
+/* Presets Pane */
+.presets-container {
+ width: 190px;
+ border-left: 1px solid var(--border-color);
+ padding: 16px;
+ background: white;
+ display: flex;
+ flex-direction: column;
+ gap: 12px;
+}
+
+.presets-title {
+ font-size: 0.7rem;
+ font-weight: 800;
+ color: #94a3b8;
+ text-transform: uppercase;
+ letter-spacing: 0.5px;
+ margin-bottom: 4px;
+ display: block;
+}
+
+.presets-list {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ max-height: 240px;
+ overflow-y: auto;
+}
+
+.preset-btn {
+ background: transparent;
+ border: none;
+ text-align: left;
+ padding: 8px 12px;
+ font-size: 0.8rem;
+ font-weight: 600;
+ color: #475569;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: all 0.2s ease;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ font-family: inherit;
+}
+
+.preset-btn:hover {
+ background: #f8fafc;
+ color: var(--primary-blue);
+}
+
+.preset-btn.active {
+ background: #eff6ff;
+ color: var(--primary-blue);
+}
+
+.preset-btn.active::after {
+ content: '✓';
+ font-weight: 700;
+ color: var(--primary-blue);
+ font-size: 0.85rem;
+}
+
+/* Footer Action Buttons */
+.date-picker-footer {
+ display: flex;
+ justify-content: flex-end;
+ gap: 12px;
+ padding: 12px 16px;
+ border-top: 1px solid var(--border-color);
+ background: #f8fafc;
+}
+
+.action-btn {
+ padding: 8px 20px;
+ font-size: 0.85rem;
+ font-weight: 700;
+ border-radius: 6px;
+ cursor: pointer;
+ transition: all 0.2s ease;
+ font-family: inherit;
+}
+
+.cancel-btn {
+ background: white;
+ border: 1px solid #cbd5e1;
+ color: #475569;
+}
+
+.cancel-btn:hover {
+ background: #f1f5f9;
+ border-color: #94a3b8;
+ color: #1e293b;
+}
+
+.apply-btn {
+ background: var(--primary-blue);
+ border: 1px solid var(--primary-blue);
+ color: white;
+}
+
+.apply-btn:hover {
+ background: #002238;
+ border-color: #002238;
+}
+
+.range-divider {
+ font-size: 0.7rem;
+ font-weight: 800;
+ color: #94a3b8;
+ text-transform: uppercase;
+ padding: 0 4px;
+}
+
+.filter-select,
+select#sort-filter {
+ width: 100%;
+ padding: 12px 12px 12px 36px;
+ background: #f8fafc;
+ border: 1px solid #e2e8f0;
+ border-radius: 4px;
+ font-size: 0.85rem;
+ font-weight: 700;
+ color: var(--primary-blue);
+ cursor: pointer;
+ appearance: none;
+ transition: all 0.2s ease;
+}
+
+.filter-select:hover,
+select#sort-filter:hover {
+ border-color: var(--secondary-gold);
+ background: white;
+}
+
+.filter-select:focus,
+select#sort-filter:focus {
+ outline: none;
+}
diff --git a/groups/Tapops/css/repository/dropdown.css b/groups/Tapops/css/repository/dropdown.css
new file mode 100644
index 0000000..81f0b80
--- /dev/null
+++ b/groups/Tapops/css/repository/dropdown.css
@@ -0,0 +1,150 @@
+/* --- Custom UI Dropdown --- */
+.custom-dropdown {
+ position: relative;
+ width: 100%;
+}
+
+.custom-dropdown-trigger {
+ width: 100%;
+ padding: 14px 18px;
+ background: white;
+ border: 1px solid #e2e8f0;
+ border-radius: 4px;
+ font-family: inherit;
+ font-size: 0.9rem;
+ font-weight: 700;
+ color: var(--primary-blue);
+ cursor: pointer;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
+}
+
+.custom-dropdown-trigger:hover {
+ border-color: var(--secondary-gold);
+ background: #fffdf5;
+}
+
+.custom-dropdown-trigger:focus-visible {
+ outline: none;
+ border-color: var(--primary-blue);
+ box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
+}
+
+.custom-dropdown-trigger .trigger-arrow {
+ font-size: 0.8rem;
+ transition: transform 0.25s ease;
+ color: var(--primary-blue);
+}
+
+.custom-dropdown.active .custom-dropdown-trigger .trigger-arrow {
+ transform: rotate(180deg);
+}
+
+.custom-dropdown.active .custom-dropdown-trigger {
+ border-color: var(--primary-blue);
+ box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
+}
+
+.custom-dropdown-menu {
+ position: absolute;
+ top: calc(100% + 6px);
+ left: 0;
+ right: 0;
+ background: white;
+ border: 1px solid #e2e8f0;
+ border-radius: 6px;
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
+ z-index: 100;
+ opacity: 0;
+ visibility: hidden;
+ transform: translateY(-8px);
+ transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
+ overflow: hidden;
+ max-height: 300px;
+ overflow-y: auto;
+}
+
+.custom-dropdown.active .custom-dropdown-menu {
+ opacity: 1;
+ visibility: visible;
+ transform: translateY(0);
+}
+
+.custom-dropdown-item {
+ padding: 12px 18px;
+ font-size: 0.88rem;
+ font-weight: 600;
+ color: #475569;
+ cursor: pointer;
+ transition: all 0.15s ease;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.custom-dropdown-item:hover {
+ background: #f1f5f9;
+ color: var(--primary-blue);
+}
+
+.custom-dropdown-item.active {
+ background: #f0f7ff;
+ color: var(--primary-blue);
+ font-weight: 700;
+}
+
+/* Tick mark for selected item */
+.custom-dropdown-item.active::after {
+ content: "\f00c";
+ font-family: "Font Awesome 5 Free";
+ font-weight: 900;
+ font-size: 0.75rem;
+ color: var(--primary-blue);
+}
+
+/* --- Filter Skeleton Loading --- */
+
+.filter-skeleton {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+}
+
+.filter-skeleton-item {
+ height: 48px;
+ border-radius: 4px;
+ background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
+ background-size: 200% 100%;
+ animation: skeleton-shimmer 1.5s ease-in-out infinite;
+}
+
+.filter-skeleton-item.short {
+ width: 70%;
+}
+
+@keyframes skeleton-shimmer {
+ 0% { background-position: 200% 0; }
+ 100% { background-position: -200% 0; }
+}
+
+.sidebar-info-box {
+ background: #f1f5f9;
+ padding: 20px;
+ border-radius: 4px;
+ display: flex;
+ gap: 12px;
+}
+
+.sidebar-info-box i {
+ color: var(--primary-blue);
+ margin-top: 3px;
+}
+
+.sidebar-info-box p {
+ font-size: 0.82rem;
+ color: #64748b;
+ line-height: 1.5;
+}
diff --git a/groups/Tapops/css/repository/index.css b/groups/Tapops/css/repository/index.css
new file mode 100644
index 0000000..67ad9e4
--- /dev/null
+++ b/groups/Tapops/css/repository/index.css
@@ -0,0 +1,7 @@
+@import url("layout.css");
+@import url("dropdown.css");
+@import url("controls.css");
+@import url("date-picker.css");
+@import url("cards.css");
+@import url("responsive.css");
+@import url("pagination.css");
diff --git a/groups/Tapops/css/repository/layout.css b/groups/Tapops/css/repository/layout.css
new file mode 100644
index 0000000..6bf710f
--- /dev/null
+++ b/groups/Tapops/css/repository/layout.css
@@ -0,0 +1,81 @@
+/* ===========================================
+ Document Hub & Dashboard Layout
+ =========================================== */
+
+.documents-section {
+ padding: 120px 5%;
+ background: hsl(0, 0%, 100%);
+}
+
+.repo-dashboard-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: 280px 1fr;
+ gap: 40px;
+ align-items: start;
+}
+
+/* --- Sidebar Styling --- */
+
+.repo-sidebar {
+ position: sticky;
+ top: 150px;
+}
+
+/* Mobile category dropdown wrapper (hidden on desktop) */
+.mobile-category-control-group {
+ display: none !important;
+}
+
+.sidebar-title {
+ font-size: 0.75rem;
+ letter-spacing: 2px;
+ font-weight: 800;
+ color: #94a3b8;
+ margin-bottom: 20px;
+ text-transform: uppercase;
+}
+
+.document-filter-wrapper {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+ margin-bottom: 30px;
+}
+
+/* Desktop: show buttons, hide dropdown */
+.filter-btn-group {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+}
+
+.filter-select-group {
+ display: none;
+}
+
+.doc-filter-btn {
+ text-align: left;
+ padding: 14px 18px;
+ background: white;
+ border: 1px solid #e2e8f0;
+ font-size: 0.85rem;
+ font-weight: 700;
+ color: var(--primary-blue);
+ cursor: pointer;
+ transition: all 0.2s ease;
+ border-radius: 4px;
+}
+
+.doc-filter-btn.active {
+ background: var(--primary-blue);
+ color: white;
+ border-color: var(--primary-blue);
+ box-shadow: 0 4px 12px rgba(0, 49, 80, 0.15);
+}
+
+.doc-filter-btn:hover:not(.active) {
+ border-color: var(--secondary-gold);
+ background: #fffdf5;
+}
diff --git a/groups/Tapops/css/repository/pagination.css b/groups/Tapops/css/repository/pagination.css
new file mode 100644
index 0000000..6160cc2
--- /dev/null
+++ b/groups/Tapops/css/repository/pagination.css
@@ -0,0 +1,172 @@
+/* ===========================================
+ Pagination
+ =========================================== */
+
+.doc-pagination {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 32px 0 0;
+ gap: 16px;
+ flex-wrap: wrap;
+}
+
+.pagination-info {
+ font-size: 0.75rem;
+ font-weight: 800;
+ color: #94a3b8;
+ text-transform: uppercase;
+ letter-spacing: 0.5px;
+}
+
+.pagination-nav {
+ display: flex;
+ align-items: center;
+ gap: 6px;
+}
+
+.pagination-btn {
+ min-width: 40px;
+ height: 40px;
+ padding: 0 10px;
+ border: 1px solid #e2e8f0;
+ background: white;
+ color: var(--primary-blue);
+ font-size: 0.85rem;
+ font-weight: 700;
+ cursor: pointer;
+ border-radius: 4px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ transition: all 0.2s ease;
+ font-family: inherit;
+}
+
+.pagination-btn:hover:not(.disabled):not(.active) {
+ border-color: var(--secondary-gold);
+ background: #fffdf5;
+}
+
+.pagination-btn.active {
+ background: var(--primary-blue);
+ border-color: var(--primary-blue);
+ color: white;
+}
+
+.pagination-btn.disabled {
+ opacity: 0.4;
+ cursor: not-allowed;
+ pointer-events: none;
+}
+
+.pagination-ellipsis {
+ min-width: 32px;
+ height: 40px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: #94a3b8;
+ font-weight: 700;
+ font-size: 1rem;
+ letter-spacing: 1px;
+}
+
+@media (max-width: 768px) {
+ .doc-pagination {
+ flex-direction: column;
+ align-items: center;
+ gap: 12px;
+ }
+}
+
+@media (max-width: 480px) {
+ .pagination-btn {
+ min-width: 36px;
+ height: 36px;
+ font-size: 0.8rem;
+ }
+
+ .pagination-nav {
+ gap: 4px;
+ }
+}
+
+/* ===========================================
+ Responsive — Phone (≤480px)
+ =========================================== */
+
+@media (max-width: 480px) {
+ .documents-section {
+ padding: 50px 12px;
+ }
+
+ .custom-dropdown-trigger {
+ padding: 12px 14px;
+ font-size: 0.85rem;
+ }
+
+ /* Single column cards */
+ .document-grid {
+ grid-template-columns: 1fr;
+ gap: 12px;
+ }
+
+ .document-card {
+ padding: 18px;
+ }
+
+ .doc-title {
+ font-size: 0.95rem;
+ margin-bottom: 8px;
+ }
+
+ .doc-type-icon {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+ }
+
+ .doc-meta {
+ margin-bottom: 12px;
+ }
+
+ .doc-tags {
+ margin-bottom: 10px;
+ gap: 4px;
+ }
+
+ .doc-tag {
+ font-size: 0.6rem;
+ padding: 2px 8px;
+ }
+
+ .btn-action-primary,
+ .btn-action-outline {
+ padding: 10px;
+ font-size: 0.7rem;
+ }
+
+ .doc-actions {
+ gap: 8px;
+ }
+
+ .repo-controls {
+ padding: 12px;
+ gap: 12px;
+ }
+
+ #doc-search {
+ padding: 12px 12px 12px 40px;
+ font-size: 0.85rem;
+ }
+
+ .search-icon {
+ left: 14px;
+ font-size: 0.9rem;
+ }
+
+ .repo-content-header {
+ gap: 16px;
+ margin-bottom: 20px;
+ }
+}
diff --git a/groups/Tapops/css/repository/responsive.css b/groups/Tapops/css/repository/responsive.css
new file mode 100644
index 0000000..636a019
--- /dev/null
+++ b/groups/Tapops/css/repository/responsive.css
@@ -0,0 +1,233 @@
+/* ===========================================
+ Responsive — Tablet (≤1024px)
+ =========================================== */
+
+@media (max-width: 1024px) {
+ .repo-dashboard-container {
+ grid-template-columns: 1fr;
+ }
+
+ .repo-sidebar {
+ display: none;
+ }
+
+ .mobile-category-control-group {
+ display: flex !important;
+ flex-direction: column;
+ gap: 8px;
+ }
+
+ /* Mobile: show dropdown */
+ .filter-select-group {
+ display: block;
+ }
+
+ /* Skeleton single bar on mobile */
+ .filter-skeleton {
+ flex-direction: column;
+ }
+
+ .filter-skeleton-item {
+ height: 48px;
+ }
+
+ .filter-skeleton-item.short {
+ display: none;
+ }
+
+ .filter-skeleton-item:not(.short) ~ .filter-skeleton-item:not(.short) {
+ display: none;
+ }
+
+ .repo-controls {
+ flex-direction: column;
+ align-items: stretch;
+ }
+
+ .search-container {
+ max-width: 100%;
+ }
+
+ .filter-controls {
+ justify-content: flex-start;
+ }
+
+ .control-group {
+ flex: 1;
+ }
+}
+
+/* ===========================================
+ Responsive — Tablet / Large Phone (≤768px)
+ =========================================== */
+
+@media (max-width: 768px) {
+ .documents-section {
+ padding: 80px 16px;
+ }
+
+ .repo-content-header {
+ gap: 20px;
+ margin-bottom: 30px;
+ }
+
+ .repo-controls {
+ padding: 16px;
+ gap: 16px;
+ }
+
+ #doc-search {
+ padding: 14px 14px 14px 44px;
+ font-size: 0.88rem;
+ }
+
+ .filter-controls {
+ flex-direction: column;
+ gap: 12px;
+ }
+
+ .control-group {
+ width: 100%;
+ }
+
+ .date-range-group {
+ min-width: 0;
+ position: relative;
+ }
+
+ body.date-picker-open {
+ overflow: hidden;
+ }
+
+ body.date-picker-open .date-picker-backdrop {
+ display: block;
+ z-index: 998;
+ }
+
+ .date-picker-popover {
+ /* Default mobile popover positioning inside media query is overridden below,
+ but let's define the base transitions or layouts. */
+ }
+
+ @media (max-width: 768px) {
+ .date-picker-popover {
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ right: auto;
+ transform: translate(-50%, -50%);
+ width: calc(100% - 32px);
+ max-width: 380px;
+ max-height: 90vh;
+ overflow-y: auto;
+ border-radius: 12px;
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
+ z-index: 999;
+ }
+
+ .date-picker-top-bar {
+ justify-content: center;
+ }
+
+ .calendar-grids {
+ gap: 0;
+ }
+
+ #right-calendar-pane {
+ display: none;
+ }
+
+ .month-labels {
+ gap: 0;
+ justify-content: center;
+ flex: 1;
+ }
+
+ #right-month-label {
+ display: none;
+ }
+
+ .date-picker-body {
+ flex-direction: column;
+ }
+
+ .presets-container {
+ width: 100%;
+ border-left: none;
+ border-top: 1px solid var(--border-color);
+ padding: 12px 16px;
+ }
+
+ .presets-list {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ gap: 6px;
+ max-height: none;
+ }
+
+ .preset-btn {
+ padding: 6px 10px;
+ font-size: 0.75rem;
+ }
+ }
+
+ .select-wrapper,
+ #sort-filter-wrapper {
+ min-width: 0;
+ width: 100%;
+ }
+
+ /* Cards: 2-column when space permits, else single */
+ .document-grid {
+ grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
+ gap: 16px;
+ }
+
+ .document-card {
+ padding: 22px;
+ }
+
+ .document-card:hover {
+ transform: none;
+ }
+
+ .doc-type-icon {
+ font-size: 1.8rem;
+ margin-bottom: 14px;
+ }
+
+ .doc-title {
+ font-size: 1rem;
+ }
+
+ .doc-meta {
+ margin-bottom: 16px;
+ }
+
+ .doc-tags {
+ margin-bottom: 14px;
+ }
+
+ .repo-main-content {
+ min-height: 400px;
+ }
+}
+
+/* ===========================================
+ Responsive — Phone (≤480px)
+ =========================================== */
+
+@media (max-width: 480px) {
+ .date-dd, .date-mm {
+ width: 26px;
+ }
+
+ .date-yyyy {
+ min-width: 38px;
+ }
+
+ .date-calendar-btn {
+ padding-left: 4px;
+ font-size: 0.82rem;
+ }
+}
diff --git a/groups/Tapops/index.html b/groups/Tapops/index.html
index d3d1b66..28d4c3d 100644
--- a/groups/Tapops/index.html
+++ b/groups/Tapops/index.html
@@ -11,9 +11,7 @@
-
-
@@ -22,1307 +20,11 @@
+
+ Aktifkan JavaScript untuk menggunakan repositori dokumen TAPOPS.
- Langsung ke Konten Utama
-
-
-
-
-
- 01101001 01101110 01100110 01101111 01110010 01101101 01100001 01110100 01101001
- 01101011 01100001 00100000 01110101 01101110 01110100 01100001 01101110 00100000
- 01100010 01101001 01110011 01100001 01101001 01101110 01100110 01101111 01110010
- 01101101 01100001 01110100 01101001 01101011 01100001 00100000 01110101 01101110
- 01110100 01100001 01101110 00100000 01100010 01101001 01110011 01100001 01010101
- 01001110 01010100 01000001 01001110 00100000 00110010 00110000 00110010 00110101
- 00100000 01100110 01110101 01110100 01110101 01110010 01100101 00100000 01110010
- 01100101 01100001 01100100 01111001 01101001 01101110 01100110 01101111 01110010
- 01101101 01100001 01110100 01101001 01101011 01100001 00100000 01110101 01101110
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Digital Administrative Hub
-
Administrasi Akademik Digital
-
- Satu pintu menuju semua dokumen penting. Akses terpusat menuju repositori dokumen akademik Program Studi
- Informatika Universitas Tanjungpura untuk mahasiswa dan staf.
-
-
-
-
-
-
- —
- Dokumen Aktif
-
-
-
- —
- Pembaruan Terbaru
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Menghubungkan ke repositori berkas...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Unduh Formulir
-
Pilih kategori pengajuan Anda, lalu unduh formulir versi terbaru. Pastikan kode revisi pada formulir sesuai dengan yang tertera di halaman ini.
-
-
-
-
-
-
-
-
Lengkapi Formulir
-
Isi setiap kolom dengan lengkap dan teliti. Sertakan seluruh dokumen pendukung yang diminta sebelum pengiriman.
-
-
-
-
-
-
-
-
Kirim Berkas
-
Kirimkan formulir beserta dokumen pendukung melalui email resmi atau WhatsApp admin prodi. Berkas yang lengkap akan langsung diproses oleh admin prodi.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Korespondensi Resmi (Email)
-
Gunakan untuk permohonan form khusus non-publik atau administrasi formal lainnya.
-
- Respon Maks. 24 Jam
- Pelayanan Formal
-
-
HUBUNGI ADMIN
-
-
-
-
-
-
-
Quick Support (WhatsApp)
-
Konsultasi cepat alur birokrasi atau pelaporan kendala akses pada berkas repositori.
-
- Respon Instan Jam Kerja
- Konsultasi Teknis
-
-
CHAT WHATSAPP
-
-
-
-
-
-
-
-
-
-
-
-
- Ikuti Kami
-
-
-
-
-
-
INFORMATIKA
-
- UNIVERSITAS TANJUNGPURA
-
-
-
-
-
-
- Jl. Prof. Dr. H. Hadari Nawawi, Bansir Laut, Kec. Pontianak Tenggara,
-
-
Kota Pontianak, Kalimantan Barat 78124
-
-
-
- E: info@informatika.untan.ac.id
- |
- P: +62 851-7165-5161
- |
- F: +62(561) 739637
- |
- WA: +62 851-7165-5161
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-