/* 
  Please paste the content of common-ui-library.css here.
  The file was not readable from the attachment.
*/

/* Mocking some classes found in apac-components.js to make the UI look decent even without the full CSS */

:root {
    --fui-card-table-primary: #0d6efd;
    --juvare-breakpoint-tablet: 768px;
}

.bg-blue-horizontal-right {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.text-neutral-1000 {
    color: #212529;
}

.bg-neutral-100 {
    background-color: #f8f9fa;
}

.card-table-row {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
    position: relative;
}

.card-table-indicator {
    width: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.d-desktop-none {
    display: none !important;
}

@media (max-width: 768px) {
    .d-desktop-none {
        display: block !important;
    }
    .d-desktop-grid {
        display: none !important;
    }
}
