/* /Components/ImportForm.razor.rz.scp.css */
.duplicate-review[b-u76ktoan2t] {
    max-height: 60vh;
    overflow-y: auto;
}

.duplicate-list[b-u76ktoan2t] {
    margin-top: 1rem;
}

.duplicate-item[b-u76ktoan2t] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f4f4f4;
    transition: all 0.2s ease;
}

.duplicate-item.approved[b-u76ktoan2t] {
    border-color: #198038;
    background: #f1f8f3;
}

.duplicate-header[b-u76ktoan2t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.duplicate-reason[b-u76ktoan2t] {
    font-size: 0.875rem;
    color: #525252;
    font-style: italic;
}

.transaction-comparison[b-u76ktoan2t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.new-transaction[b-u76ktoan2t], .existing-transaction[b-u76ktoan2t] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.75rem;
    background: white;
}

.new-transaction h4[b-u76ktoan2t] {
    color: #0f62fe;
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.existing-transaction h4[b-u76ktoan2t] {
    color: #6f6f6f;
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.transaction-details p[b-u76ktoan2t] {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.bx--modal-container--lg[b-u76ktoan2t] {
    max-width: 80vw;
    width: 80vw;
}

@media (max-width: 768px) {
    .transaction-comparison[b-u76ktoan2t] {
        grid-template-columns: 1fr;
    }
    
    .bx--modal-container--lg[b-u76ktoan2t] {
        max-width: 95vw;
        width: 95vw;
    }
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
/* Styles for the LoadingSpinner component */
.loading-spinner[b-0emvu7q4k7] {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #0f62fe; /* Primary accent color */
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  animation: spin-b-0emvu7q4k7 1s linear infinite;
  margin: auto;
}

@keyframes spin-b-0emvu7q4k7 {
  to {
    transform: rotate(360deg);
  }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-zy7mgzlmnf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-zy7mgzlmnf] {
    flex: 1;
}

.sidebar[b-zy7mgzlmnf] {
    background: linear-gradient(180deg, #262626 0%, #161616 70%); /* Carbon Gray 20 to Gray 10 */
}

.top-row[b-zy7mgzlmnf] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-zy7mgzlmnf]  a, .top-row[b-zy7mgzlmnf]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-zy7mgzlmnf]  a:hover, .top-row[b-zy7mgzlmnf]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-zy7mgzlmnf]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-zy7mgzlmnf] {
        justify-content: space-between;
    }

    .top-row[b-zy7mgzlmnf]  a, .top-row[b-zy7mgzlmnf]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-zy7mgzlmnf] {
        flex-direction: row;
    }

    .sidebar[b-zy7mgzlmnf] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-zy7mgzlmnf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-zy7mgzlmnf]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-zy7mgzlmnf], article[b-zy7mgzlmnf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Navigation Menu Item Styling */
.nav-menu-item[b-zqpphsxwyy] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    color: #d1d5db; /* text-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.nav-menu-item:hover[b-zqpphsxwyy] {
    background-color: #374151; /* bg-gray-700 */
    color: #ffffff; /* text-white */
    text-decoration: none;
}

.nav-menu-item:focus[b-zqpphsxwyy] {
    outline: none;
    box-shadow: 0 0 0 2px #3b82f6, 0 0 0 4px #1f2937; /* focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 focus:ring-offset-gray-800 */
}

.nav-menu-item.active[b-zqpphsxwyy] {
    background-color: #2563eb; /* bg-blue-600 */
    color: #ffffff; /* text-white */
    border-left: 4px solid #60a5fa; /* border-l-4 border-blue-400 */
}

/* Mobile responsive behavior */
@media (max-width: 767px) {
    .collapse[b-zqpphsxwyy] {
        display: none;
    }
}

@media (min-width: 768px) {
    .collapse[b-zqpphsxwyy] {
        /* Never collapse the sidebar for wide screens */
        display: block !important;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.bx--structured-list-row[b-46d1cep0cj] {
    display: flex;
    justify-content: space-between;
}

.bx--btn[b-46d1cep0cj] {
    max-width: 100%;
    display: flex;
    justify-content: center;
}
