@import '_content/ScoutBadger.Frontend.Generic/ScoutBadger.Frontend.Generic.c6mnoxseu5.bundle.scp.css';

/* _content/ScoutBadger.Frontend.Public.Components/Component1.razor.rz.scp.css */
.my-component[b-0q4xynf5uy] {
    border: 2px dashed red;
    padding: 1em;
    margin: 1em 0;
    background-image: url('background.png');
}
/* _content/ScoutBadger.Frontend.Public.Components/PendingAward/AlternativeTable.razor.rz.scp.css */
/* _content/ScoutBadger.Frontend.Public.Components/PendingAward/Summary.razor.rz.scp.css */
/* Compact Status Summary */
.sb-status-summary[b-b3e1bs2fqy] {
    background: white;
    border-radius: 0px;
    border: 0px solid #e5e7eb;
    overflow: hidden;
}

/* Grid Layout for Compact Display */
.sb-status-grid[b-b3e1bs2fqy] {
    display: grid;
    gap: 1px;
    background: #f3f4f6;
}

/* Individual Status Items */
.sb-status-item[b-b3e1bs2fqy] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    transition: background-color 0.15s ease;
}

.sb-status-item:hover[b-b3e1bs2fqy] {
    background: #f9fafb;
}

/* Status Icon */
.sb-status-icon[b-b3e1bs2fqy] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    transition: all 0.2s ease;
}

/* Status Icon Colors */
.sb-completed .sb-status-icon[b-b3e1bs2fqy] {
    background: #dcfce7;
    color: #16a34a;
}

.sb-in-progress .sb-status-icon[b-b3e1bs2fqy] {
    background: #fef3c7;
    color: #d97706;
}

.sb-pending .sb-status-icon[b-b3e1bs2fqy] {
    background: #f3f4f6;
    color: #6b7280;
}

/* Status Information */
.sb-status-info[b-b3e1bs2fqy] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

/* Status Label */
.sb-status-label[b-b3e1bs2fqy] {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Status Text */
.sb-status-text[b-b3e1bs2fqy] {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

/* Status Meta Information */
.sb-status-meta[b-b3e1bs2fqy] {
    font-size: 13px;
    color: #6b7280;
    margin-top: 1px;
}

/* Description inside Summary as a proper tile */
.sb-status-item.sb-description[b-b3e1bs2fqy] {
        align-items: flex-start;
}

.sb-status-item.sb-description .sb-status-info[b-b3e1bs2fqy] {
        gap: 0px;
}

.sb-status-item.sb-description .sb-description[b-b3e1bs2fqy] {
        margin: 0 0 0; /* reduce whitespace under label */
        font-size: 14px;
        padding:0px;
        color: #3a4558;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        height:max-content;
        max-width: 100%;
        overflow-x: hidden;
}

.sb-status-item.sb-description .sb-description-container[b-b3e1bs2fqy] {
        max-width: 100%;
        overflow-x: hidden;
}

.sb-desc-mobile[b-b3e1bs2fqy],
.sb-desc-desktop[b-b3e1bs2fqy] {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        max-width: 100%;
        overflow-x: hidden;
}

.sb-clamped[b-b3e1bs2fqy]{
    display:-webkit-box;
    -webkit-line-clamp:3;
    line-clamp:3; /* standard */
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
}

.sb-expanded[b-b3e1bs2fqy] {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    animation: fadeIn-b-b3e1bs2fqy 0.2s ease;
}

@keyframes fadeIn-b-b3e1bs2fqy {
    from { opacity: .85; transform: translateY(-2px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Desktop - show full description */
@media (min-width: 721px) {
    .sb-status-item.sb-description .sb-description.sb-clamped[b-b3e1bs2fqy] {
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        -webkit-box-orient: unset !important;
        overflow: visible !important;
    }
    .sb-status-item.sb-description .sb-link-more[b-b3e1bs2fqy] { display: none !important; }
    .sb-status-item.sb-description .sb-desc-mobile[b-b3e1bs2fqy] { display: none !important; }
    .sb-status-item.sb-description .sb-desc-desktop[b-b3e1bs2fqy] { display: block !important; }
}

/* Mobile - clamp to 3 lines until expanded */
@media (max-width: 720px) {
    .sb-status-item.sb-description .sb-desc-mobile[b-b3e1bs2fqy] { display: block; }
    .sb-status-item.sb-description .sb-desc-desktop[b-b3e1bs2fqy] { display: none; }
    .sb-status-item.sb-description .sb-link-more[b-b3e1bs2fqy] { display: inline-flex !important; }
    .sb-status-item.sb-description .sb-description.sb-clamped .sb-desc-mobile[b-b3e1bs2fqy] {
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .sb-status-item.sb-description .sb-description.sb-expanded .sb-desc-mobile[b-b3e1bs2fqy] {
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        -webkit-box-orient: unset !important;
        overflow: visible !important;
    }
}

/* Compact Progress Bar */
.sb-progress-compact[b-b3e1bs2fqy] {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sb-progress-bar[b-b3e1bs2fqy] {
    height: 6px !important;
    border-radius: 3px !important;
    background: #f3f4f6 !important;
}

.sb-progress-bar .rz-progressbar-value[b-b3e1bs2fqy] {
    background: #16a34a !important;
    border-radius: 3px !important;
}

.sb-progress-text[b-b3e1bs2fqy] {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .sb-status-item[b-b3e1bs2fqy] {
        padding: 12px;
        gap: 10px;
    }
    
    .sb-status-icon[b-b3e1bs2fqy] {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .sb-status-label[b-b3e1bs2fqy] {
        font-size: 12px;
    }
    
    .sb-status-text[b-b3e1bs2fqy] {
        font-size: 14px;
    }
    
    .sb-status-meta[b-b3e1bs2fqy],
    .sb-progress-text[b-b3e1bs2fqy] {
        font-size: 12px;
    }
}
/* _content/ScoutBadger.Frontend.Public.Components/PendingAward/Tiles/PendingAwardTile.razor.rz.scp.css */
/* Modern Compact Card Design */
.sb-card[b-m20xyxfj67] {
    --color-success: #16a34a;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --color-track: #f3f4f6;
    --color-surface: #ffffff;
    --color-border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    height: 160px; /* Fill the fixed-height container */
    width: 160px;  /* Fill the fixed-width container */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding:0px;
    overflow: hidden;
    position: relative; /* Enable positioning for status badge */
}

.sb-card:hover[b-m20xyxfj67] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: #d1d5db;
}

.sb-card:focus-visible[b-m20xyxfj67] {
    outline: 2px solid var(--color-success);
    outline-offset: 2px;
    box-shadow: var(--shadow-md);
}

/* Card Body */
.sb-card-body[b-m20xyxfj67] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 8px 8px 8px;
    height: 100%;
    gap: 8px;
    justify-content: flex-start; /* Always align to top */
    overflow: hidden;
}

/* Card Content - icon and title always positioned consistently */
.sb-card-content[b-m20xyxfj67] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0; /* Don't allow this to shrink */
}

/* Badge Icon */
.sb-card-icon[b-m20xyxfj67] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Progress info container - positioned below icon and title */
.sb-card-progress-info[b-m20xyxfj67] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    align-items: center;
    margin-top: auto; /* Push to bottom of available space */
}

/* Status Badge - positioned at top-right */
.sb-card-status-badge[b-m20xyxfj67] {
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 10;
}

.sb-card-status-badge .pill[b-m20xyxfj67] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 0px 0px 0px 8px;
    font-weight: 600;
    font-size: 0.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sb-card-icon img[b-m20xyxfj67] {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
}

/* Title */
.sb-card-title[b-m20xyxfj67] {
    font-weight: 700;
    font-size: 0.95rem; /* Reduced from 1.1rem */
    line-height: 1.0;
    margin: 0;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.4rem; /* Reduced from 2.6rem */
}

/* Legacy pill styles - kept for compatibility but overridden by status badge */
.pill[b-m20xyxfj67] {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.6rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Progress Section */
.sb-card-progress[b-m20xyxfj67] {
    width: 100%;
    margin-top: 0; /* Remove auto margin for horizontal layout */
    display: flex;
    flex-direction: column;
    gap: 2px; /* Smaller gap for compact horizontal layout */
}

.sb-card-progress .bar[b-m20xyxfj67] {
    position: relative;
    height: 3px; /* Thinner progress bar for horizontal layout */
    border-radius: 2px;
    background: var(--color-track);
    overflow: hidden;
}

.sb-card-progress .fill[b-m20xyxfj67] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 2px;
    background: var(--color-success);
    transition: width 0.3s ease;
}

.sb-card-progress .pct[b-m20xyxfj67] {
    font-weight: 700;
    font-size: 0.6rem;
    color: #374151;
    text-align: center; /* Center align for bottom position */
}

/* Status-based styling */
.sb-card.ok .pill[b-m20xyxfj67] {
    background: var(--color-success);
}

.sb-card.warn .pill[b-m20xyxfj67] {
    background: var(--color-warning);
}

.sb-card.danger .pill[b-m20xyxfj67] {
    background: var(--color-danger);
}

.sb-card.danger .fill[b-m20xyxfj67] {
    background: var(--color-track);
}

/* Size Variants */
.sb-card.size-sm .sb-card-body[b-m20xyxfj67] {
    padding: 8px 6px 7px;
    gap: 6px;
}

.sb-card.size-sm .sb-card-icon[b-m20xyxfj67] {
    width: 64px;
    height: 64px;
    margin-bottom: 2px;
}

.sb-card.size-sm .sb-card-icon img[b-m20xyxfj67] {
    width: 56px;
    height: 56px;
}

.sb-card.size-sm .sb-card-title[b-m20xyxfj67] {
    font-size: 0.95rem;
    min-height: 1.2rem;
}

.sb-card.size-sm .pill[b-m20xyxfj67] {
    padding: 3px 5px;
    font-size: 0.7rem;
}

.sb-card.size-sm .sb-card-progress .pct[b-m20xyxfj67] {
    font-size: 0.8rem;
}

.sb-card.size-lg .sb-card-body[b-m20xyxfj67] {
    padding: 12px 10px 12px;
    gap: 5px;
}

.sb-card.size-lg .sb-card-icon[b-m20xyxfj67] {
    width: 96px;
    height: 96px;
    margin-bottom: 6px;
}

.sb-card.size-lg .sb-card-icon img[b-m20xyxfj67] {
    width: 88px;
    height: 88px;
}

.sb-card.size-lg .sb-card-title[b-m20xyxfj67] {
    font-size: 1.25rem;
}

.sb-card.size-lg .pill[b-m20xyxfj67] {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.sb-card.size-lg .sb-card-progress .pct[b-m20xyxfj67] {
    font-size: 1rem;
}

/* Mobile Responsive - More compact for smaller screens */
@media (max-width: 640px) {
    .sb-card-body[b-m20xyxfj67] {
        padding: 12px 8px 10px;
        gap: 4px;
    }
    
    .sb-card-icon[b-m20xyxfj67] {
        width: 48px;
        height: 48px;
        margin-bottom: 2px;
    }
    
    .sb-card-icon img[b-m20xyxfj67] {
        width: 44px;
        height: 44px;
    }
    
    .sb-card-title[b-m20xyxfj67] {
        font-size: 0.8rem;
        line-height: 1.2;
        min-height: 1.9rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .pill[b-m20xyxfj67] {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .sb-card-progress .bar[b-m20xyxfj67] {
        height: 3px;
    }
    
    .sb-card-progress .pct[b-m20xyxfj67] {
        font-size: 0.7rem;
        margin-top: 3px;
    }
}

/* Extra small screens - even more compact */
@media (max-width: 480px) {
    .sb-card-body[b-m20xyxfj67] {
        padding: 10px 6px 8px;
        gap: 3px;
    }
    
    .sb-card-icon[b-m20xyxfj67] {
        width: 40px;
        height: 40px;
        margin-bottom: 1px;
    }
    
    .sb-card-icon img[b-m20xyxfj67] {
        width: 36px;
        height: 36px;
    }
    
    .sb-card-title[b-m20xyxfj67] {
        font-size: 0.75rem;
        min-height: 1.8rem;
    }
    
    .pill[b-m20xyxfj67] {
        font-size: 0.55rem;
        padding: 1px 4px;
    }
    
    .sb-card-progress .pct[b-m20xyxfj67] {
        font-size: 0.65rem;
    }
}

/* Very small screens - ultra compact */
@media (max-width: 360px) {
    .sb-card-body[b-m20xyxfj67] {
        padding: 8px 4px 6px;
        gap: 2px;
    }
    
    .sb-card-icon[b-m20xyxfj67] {
        width: 32px;
        height: 32px;
        margin-bottom: 1px;
    }
    
    .sb-card-icon img[b-m20xyxfj67] {
        width: 30px;
        height: 30px;
    }
    
    .sb-card-title[b-m20xyxfj67] {
        font-size: 0.7rem;
        min-height: 1.6rem;
        font-weight: 600;
    }
    
    .pill[b-m20xyxfj67] {
        font-size: 0.5rem;
        padding: 1px 3px;
        font-weight: 500;
    }
    
    .sb-card-progress .bar[b-m20xyxfj67] {
        height: 2px;
    }
    
    .sb-card-progress .pct[b-m20xyxfj67] {
        font-size: 0.6rem;
        font-weight: 600;
    }
}
/* _content/ScoutBadger.Frontend.Public.Components/PendingAwardRequirement/ImprovedRequirementsTree.razor.rz.scp.css */
.requirements-container[b-o332vfuatg] {
    overflow-y: auto;
    overflow-x: hidden;
    background: white;
    border-radius: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px; /* No gaps between items */
    border: 0px;
    min-height: fit-content;
    height: auto;
    margin-left: 0px;
    margin-bottom: 20px;
}

.requirement-card[b-o332vfuatg] {
    background: white;
    border-radius: 0px;
    border: 1px solid #e5e7eb;
    border-right: 0px !important;
    border-top: 0px !important;
    border-bottom: 0px !important; /* Remove bottom border to eliminate gaps */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    margin-bottom:5px;
    flex-shrink: 0;
    min-height: fit-content;
}

.requirement-card:hover[b-o332vfuatg] {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.requirement-card.completed[b-o332vfuatg] {
    border-left: 2px solid #22a06b;
    border-bottom: none; /* Remove bottom border to eliminate gaps */
}

.requirement-card.pending[b-o332vfuatg] {
    border-left: 2px solid #f59e0b;
    border-bottom: none; /* Remove bottom border to eliminate gaps */
}

.requirement-header[b-o332vfuatg] {
    padding: 0.3rem 0.4rem; /* Reduced by 20% from 0.375rem 0.5rem */
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
    min-height: fit-content;
}

.requirement-header:hover[b-o332vfuatg] {
    background: #f8f9fa;
}

.requirement-header.expandable[b-o332vfuatg] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.requirement-header.expanded[b-o332vfuatg] {
    background: white;
}

.requirement-content[b-o332vfuatg] {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem; /* Reduced by 20% from 0.375rem */
    width: 100%;
}

.status-icon[b-o332vfuatg] {
    width: 14px; /* Reduced further from 12px to make circle even smaller */
    height: 14px; /* Reduced further from 12px to make circle even smaller */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0px;
    transition: all 0.2s ease;
    position: relative;
}

.status-icon.completed[b-o332vfuatg] {
    background: #22a06b;
    color: white;
    box-shadow: 0 4px 8px rgba(34, 160, 107, 0.3);
}

.status-icon.pending[b-o332vfuatg] {
    background: #f59e0b;
    color: white;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.status-icon.completed[b-o332vfuatg]::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(34, 160, 107, 0.2);
    animation: pulse-success-b-o332vfuatg 2s infinite;
}

@keyframes pulse-success-b-o332vfuatg {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.requirement-info[b-o332vfuatg] {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.requirement-title[b-o332vfuatg] {
    font-size: 0.95rem; /* Increased by ~13% from 0.75rem */
    font-weight: 700;
    color: #111827;
    margin: 0; /* Remove all margins to eliminate whitespace */
    line-height: 1.2; /* Reduced from 1.25 */
    letter-spacing: -0.025em;
}

.requirement-description[b-o332vfuatg] {
    font-size: 0.9rem; /* Increased by ~15% from 0.65rem */
    color: #4b5563;
    line-height: 1.3; /* Reduced from 1.4 */
    margin: 0;
    width: 100%;
    max-width: none;
}

.requirement-description-full[b-o332vfuatg] {
    width: 100%;
    padding: 0 0.4rem 0.2rem 0.4rem; /* Reduced by 20% from 0.5rem and 0.25rem */
    margin-top: 0; /* Remove top margin to eliminate whitespace between title and description */
}

.requirement-meta[b-o332vfuatg] {
    display: flex;
    flex-direction: row; /* Change to row to put items horizontally */
    align-items: center; /* Center align vertically */
    justify-content: flex-end; /* Right align content */
    gap: 0.3rem; /* Increased gap for horizontal spacing */
    flex-shrink: 0;
    min-height: 100%;
    padding: 0.1rem 0; /* Reduced by 20% from 0.125rem */
}

.progress-badge[b-o332vfuatg] {
    background: #007bff;
    color: white;
    padding: 0.15rem 0.3rem; /* Reduced by 20% from 0.1875rem 0.375rem */
    border-radius: 3px; /* Reduced from 4px */
    font-size: 0.63rem; /* Increased by ~15% from 0.55rem */
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 123, 255, 0.2);
    transition: all 0.2s ease;
}

.progress-badge:hover[b-o332vfuatg] {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.progress-badge.completed[b-o332vfuatg] {
    background: #22a06b;
    box-shadow: 0 1px 3px rgba(34, 160, 107, 0.2);
}

.expand-button[b-o332vfuatg] {
    width: 25px; /* Reduced by ~12.5% from 16px */
    height: 25px; /* Reduced by ~12.5% from 16px */
    border-radius: 2px; /* Reduced from 3px */
    border: 1px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.expand-button:hover[b-o332vfuatg] {
    background: #f8f9fa;
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: scale(1.05);
}

.expand-button:active[b-o332vfuatg] {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

.expand-button.expanded[b-o332vfuatg] {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: scale(1.02);
}

/* Chevron styling with smooth animations */
div.expand-button .chevron[b-o332vfuatg],
div.nested-expand-button .chevron[b-o332vfuatg] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b7280;
    font-size: 0.8125rem;
    display: inline-block;
    transform: scale(1);
    opacity: 1;
}

/* Expanded state styling with animation */
div.expand-button.expanded .chevron[b-o332vfuatg],
div.nested-expand-button.expanded .chevron[b-o332vfuatg] {
    color: #495057;
    transform: scale(1.1);
}

/* Hover effects for better interactivity */
div.expand-button:hover .chevron[b-o332vfuatg],
div.nested-expand-button:hover .chevron[b-o332vfuatg] {
    color: #374151;
    transform: scale(1.15);
}

div.expand-button.expanded:hover .chevron[b-o332vfuatg],
div.nested-expand-button.expanded:hover .chevron[b-o332vfuatg] {
    color: #374151;
    transform: scale(1.2);
}

/* Smooth fade-in animation for icon changes */
@keyframes iconFadeIn-b-o332vfuatg {
    0% { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

div.expand-button .chevron[b-o332vfuatg],
div.nested-expand-button .chevron[b-o332vfuatg] {
    animation: iconFadeIn-b-o332vfuatg 0.2s ease-out;
}

.expand-button.expanded[b-o332vfuatg] {
    background: #e9ecef;
    border-color: #adb5bd;
}

.children-minimal[b-o332vfuatg] {
    background: white;
    padding: 0px;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0; /* Remove top margin to eliminate gaps */
}



.child-requirement[b-o332vfuatg] {
    background: white;
    border-radius: 0px; /* Remove border radius for tighter layout */
    padding: 0.3rem; /* Further reduced from 0.4rem */
    margin-bottom: 0px; /* Remove margin to eliminate whitespace */
    position: relative;
    padding-left: 0.8rem; /* Further reduced from 1rem */
    transition: all 0.2s ease;
    box-shadow: none; /* Remove shadow to reduce visual weight */
    margin-left: -2px; /* Remove negative margin */
    border-bottom: 1px solid #f1f5f9; /* Add subtle separator */
}

.child-requirement:hover[b-o332vfuatg] {
    box-shadow: none; /* Remove hover shadow */
    border-color: #cbd5e1;
    transform: none; /* Remove transform to prevent layout shift */
    background: #f8f9fa; /* Subtle background change instead */
}

.child-requirement:last-child[b-o332vfuatg] {
    margin-bottom: 0;
    border-bottom: none; /* Remove border for last item */
}

.child-requirement[b-o332vfuatg]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px; /* Reduced from 3px */
    background: #007bff;
    border-radius: 1px; /* Reduced from 2px */
}

.child-requirement.completed[b-o332vfuatg]::before {
    background: #22a06b;
}

.child-requirement.pending[b-o332vfuatg]::before {
    background: #f59e0b;
}

.child-content[b-o332vfuatg] {
    display: flex;
    align-items: flex-start; /* Changed back to flex-start for title alignment */
    gap: 0.3rem; /* Reduced by 20% from 0.375rem */
    padding-left: 0.1rem; /* Reduced from 0.125rem */
    position: relative;
    min-height: 16px; /* Reduced to match smaller icons */
}

.child-content .status-icon[b-o332vfuatg] {
    position: relative;
    z-index: 2; /* Ensure icon appears above the horizontal line */
    border: 1px solid white; /* Reduced border for better line integration */
    box-sizing: border-box;
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 0.1rem; /* Reduced from 0.125rem */
}

/* Create seamless line-to-icon transition */
.child-content .status-icon[b-o332vfuatg]::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    z-index: -1;

        width: 25px; /* Slightly larger connection bridge on mobile */
        left: -18px;
}

.child-requirement.completed .status-icon[b-o332vfuatg]::before {
    background: #22a06b;
}

.child-requirement.pending .status-icon[b-o332vfuatg]::before {
    background: #f59e0b;
}

.child-requirement .status-icon[b-o332vfuatg]::before {
    background: #007bff;
}
.child-title[b-o332vfuatg] {
    font-size: 0.85rem; /* Increased by ~14% from 0.7rem */
    font-weight: 600;
    color: #374151;
    margin: 0; /* Remove all margins to eliminate whitespace */
    line-height: 1.2; /* Reduced from 1.3 */
}

.child-description[b-o332vfuatg] {
    font-size: 0.8rem; /* Increased by ~15% from 0.6rem */
    color: #6b7280;
    line-height: 1.4; /* Reduced from 1.5 */
    margin: 0;
}

.progress-indicator[b-o332vfuatg] {
    font-size: 0.8rem; /* Increased by ~15% from 0.55rem */
    color: #9ca3af; /* Lighter color for subtle appearance */
    margin-top: 0; /* Remove margin since it's positioned in meta area */
    font-weight: 400; /* Lighter weight */
    display: flex;
    align-items: center;
    gap: 0.1rem; /* Reduced from 0.125rem */
    text-align: right; /* Right-align text */
    white-space: nowrap; /* Prevent text wrapping */
    opacity: 0.8; /* Subtle opacity */
}

.progress-indicator[b-o332vfuatg]::before {
    content: ''; /* Remove emoji for cleaner look */
    display: none; /* Hide the icon */
}

.nested-expand-button[b-o332vfuatg] {
    width: 16px; /* Reduced to better match child title line height */
    height: 16px; /* Reduced to better match child title line height */
    border-radius: 3px; /* Reduced from 4px */
    border: 1px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transform: scale(1);
}

.nested-expand-button:hover[b-o332vfuatg] {
    background: #f8f9fa;
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: scale(1.05);
}

.nested-expand-button:active[b-o332vfuatg] {
    transform: scale(0.95);
    transition-duration: 0.1s;
}

.nested-expand-button.expanded[b-o332vfuatg] {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: scale(1.02);
}

.child-meta[b-o332vfuatg] {
    display: flex;
    flex-direction: row; /* Change to row to put items horizontally */
    align-items: center; /* Center align vertically */
    justify-content: flex-end; /* Right align content */
    gap: 0.3rem; /* Increased gap for horizontal spacing */
    flex-shrink: 0;
    min-height: 100%;
    padding: 0.1rem 0; /* Reduced by 20% from 0.125rem */
}

.child-level-container[b-o332vfuatg] {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: min-content;
}

/* Loading states and animations */
.requirement-card.loading[b-o332vfuatg] {
    opacity: 0.7;
    pointer-events: none;
}

.fade-in[b-o332vfuatg] {
    animation: fadeIn-b-o332vfuatg 0.3s ease-out;
}

@keyframes fadeIn-b-o332vfuatg {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
} 

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .requirements-container[b-o332vfuatg] {
        padding: 0px;
        border: 0px !important;
    }

.progress-indicator[b-o332vfuatg] {
    font-size: 0.65rem; /* Increased by ~15% from 0.55rem */
}
    
    .requirement-header[b-o332vfuatg] {
        padding: 0.875rem 0.8rem 0.1rem 0.8rem;
    }
    
    .requirement-title[b-o332vfuatg] {
        font-size: 1rem;
    }
    
    .requirement-content[b-o332vfuatg] {
        gap: 0.5rem;
    }
    
    .status-icon[b-o332vfuatg] {
        width: 18px;
        height: 18px;
    }
    
    .expand-button[b-o332vfuatg] {
        width: 28px;
        height: 28px;
    }

    .toolbar[b-o332vfuatg] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .toolbar-actions[b-o332vfuatg] {
        flex-direction: row;
        width: 100%;
    }

    .toolbar-button[b-o332vfuatg] {
        width: 100%;
        justify-content: center;
    }

    /* Mobile adjustments for icon-connected lines only */
    .child-content[b-o332vfuatg] {
        gap: 0.5rem; /* Larger gap on mobile */
        min-height: 28px; /* Larger minimum height for mobile */
    }

    .child-content .status-icon[b-o332vfuatg] {
        margin-top: 0.25rem; /* Larger margin for mobile title alignment */
    }

    .child-content .status-icon[b-o332vfuatg]::before {
        width: 25px; /* Slightly larger connection bridge on mobile */
        left: -18px;
    }
}

/* Toolbar styles */
.toolbar[b-o332vfuatg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0.5rem; /* Further reduced padding */
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0px;
    margin-bottom: 0px; /* Remove margin to eliminate whitespace */
}

.toolbar-actions[b-o332vfuatg] {
    display: flex;
    gap: 0.3rem; /* Reduced by 20% from 0.375rem */
}

.toolbar-button[b-o332vfuatg] {
    display: flex;
    align-items: center;
    gap: 0.2rem; /* Reduced by 20% from 0.25rem */
    padding: 0.3rem 0.4rem; /* Reduced by 20% from 0.375rem 0.5rem */
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 3px; /* Reduced from 4px */
    color: #374151;
    font-size: 0.75rem; /* Increased by ~15% from 0.65rem */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.toolbar-button:hover[b-o332vfuatg] {
    background: #e9ecef;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.toolbar-button:active[b-o332vfuatg] {
    transform: translateY(0);
}

.toolbar-info[b-o332vfuatg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-count[b-o332vfuatg] {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    background: #e8edf3;
    border-radius: 12px;
}

/* Action button styling - integrated into layout */
.requirement-action-button[b-o332vfuatg] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto; /* Push to the right within flex container */
}

.requirement-action-button.child-level[b-o332vfuatg] {
    margin-left: auto; /* Push to the right within flex container */
}

/* Container for child action button */
.child-action-container[b-o332vfuatg] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-left: auto;
}

/* Remove the padding we added for absolute positioning */
.requirement-card[b-o332vfuatg] {
    position: relative;
    padding-right: 0.5rem; /* Reset to normal padding */
}

.child-requirement[b-o332vfuatg] {
    position: relative;
    padding-right: 0.3rem; /* Reset to normal padding */
}

/* Ensure content containers work with flex layout */
.requirement-content[b-o332vfuatg] {
    padding-right: 0;
}

.child-content[b-o332vfuatg] {
    padding-right: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .requirement-action-button[b-o332vfuatg] {
        margin-left: 0.5rem; /* Add some spacing on mobile */
    }
    
    .requirement-action-button.child-level[b-o332vfuatg] {
        margin-left: 0.3rem; /* Add some spacing on mobile for child items */
    }
    
    .child-action-container[b-o332vfuatg] {
        margin-top: 0.25rem;
        justify-content: flex-start; /* Left align on mobile for better touch targets */
    }
}
/* _content/ScoutBadger.Frontend.Public.Components/PendingAwardRequirementReview/Summary.razor.rz.scp.css */
/* Compact Status Summary */
.sb-status-summary[b-dllpmfv7i0] {
    background: white;
    border-radius: 0px;
    border: 0px solid #e5e7eb;
    overflow: hidden;
}

/* Grid Layout for Compact Display */
.sb-status-grid[b-dllpmfv7i0] {
    display: grid;
    gap: 1px;
    background: #f3f4f6;
}

/* Individual Status Items */
.sb-status-item[b-dllpmfv7i0] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    transition: background-color 0.15s ease;
}

.sb-status-item:hover[b-dllpmfv7i0] {
    background: #f9fafb;
}

/* Status Icon */
.sb-status-icon[b-dllpmfv7i0] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    transition: all 0.2s ease;
}

/* Status Icon Colors */
.sb-completed .sb-status-icon[b-dllpmfv7i0] {
    background: #dcfce7;
    color: #16a34a;
}

.sb-in-progress .sb-status-icon[b-dllpmfv7i0] {
    background: #fef3c7;
    color: #d97706;
}

.sb-pending .sb-status-icon[b-dllpmfv7i0] {
    background: #f3f4f6;
    color: #6b7280;
}

/* Status Information */
.sb-status-info[b-dllpmfv7i0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

/* Status Label */
.sb-status-label[b-dllpmfv7i0] {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Status Text */
.sb-status-text[b-dllpmfv7i0] {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

/* Status Meta Information */
.sb-status-meta[b-dllpmfv7i0] {
    font-size: 13px;
    color: #6b7280;
    margin-top: 1px;
}

/* Description inside Summary as a proper tile */
.sb-status-item.sb-description[b-dllpmfv7i0] {
        align-items: flex-start;
}

.sb-status-item.sb-description .sb-status-info[b-dllpmfv7i0] {
        gap: 0px;
}

.sb-status-item.sb-description .sb-description[b-dllpmfv7i0] {
        margin: 0 0 0; /* reduce whitespace under label */
        font-size: 14px;
        padding:0px;
        color: #3a4558;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        height:max-content;
        max-width: 100%;
        overflow-x: hidden;
}

.sb-status-item.sb-description .sb-description-container[b-dllpmfv7i0] {
        max-width: 100%;
        overflow-x: hidden;
}

.sb-desc-mobile[b-dllpmfv7i0],
.sb-desc-desktop[b-dllpmfv7i0] {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        max-width: 100%;
        overflow-x: hidden;
}

.sb-clamped[b-dllpmfv7i0]{
    display:-webkit-box;
    -webkit-line-clamp:3;
    line-clamp:3; /* standard */
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
}

.sb-expanded[b-dllpmfv7i0] {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    animation: fadeIn-b-dllpmfv7i0 0.2s ease;
}

@keyframes fadeIn-b-dllpmfv7i0 {
    from { opacity: .85; transform: translateY(-2px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Desktop - show full description */
@media (min-width: 721px) {
    .sb-status-item.sb-description .sb-description.sb-clamped[b-dllpmfv7i0] {
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        -webkit-box-orient: unset !important;
        overflow: visible !important;
    }
    .sb-status-item.sb-description .sb-link-more[b-dllpmfv7i0] { display: none !important; }
    .sb-status-item.sb-description .sb-desc-mobile[b-dllpmfv7i0] { display: none !important; }
    .sb-status-item.sb-description .sb-desc-desktop[b-dllpmfv7i0] { display: block !important; }
}

/* Mobile - clamp to 3 lines until expanded */
@media (max-width: 720px) {
    .sb-status-item.sb-description .sb-desc-mobile[b-dllpmfv7i0] { display: block; }
    .sb-status-item.sb-description .sb-desc-desktop[b-dllpmfv7i0] { display: none; }
    .sb-status-item.sb-description .sb-link-more[b-dllpmfv7i0] { display: inline-flex !important; }
    .sb-status-item.sb-description .sb-description.sb-clamped .sb-desc-mobile[b-dllpmfv7i0] {
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .sb-status-item.sb-description .sb-description.sb-expanded .sb-desc-mobile[b-dllpmfv7i0] {
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        -webkit-box-orient: unset !important;
        overflow: visible !important;
    }
}

/* Compact Progress Bar */
.sb-progress-compact[b-dllpmfv7i0] {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sb-progress-bar[b-dllpmfv7i0] {
    height: 6px !important;
    border-radius: 3px !important;
    background: #f3f4f6 !important;
}

.sb-progress-bar .rz-progressbar-value[b-dllpmfv7i0] {
    background: #16a34a !important;
    border-radius: 3px !important;
}

.sb-progress-text[b-dllpmfv7i0] {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .sb-status-item[b-dllpmfv7i0] {
        padding: 12px;
        gap: 10px;
    }
    
    .sb-status-icon[b-dllpmfv7i0] {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .sb-status-label[b-dllpmfv7i0] {
        font-size: 12px;
    }
    
    .sb-status-text[b-dllpmfv7i0] {
        font-size: 14px;
    }
    
    .sb-status-meta[b-dllpmfv7i0],
    .sb-progress-text[b-dllpmfv7i0] {
        font-size: 12px;
    }
}
/* _content/ScoutBadger.Frontend.Public.Components/PendingAwardRequirementReview/Tiles/PendingAwardRequirementReviewTile.razor.rz.scp.css */
/* Review Card Styling */
.sb-review-card[b-ibcxdwaq8a] {
    --color-success: #16a34a;
    --color-warning: #d97706;
    --color-info: #0ea5e9;
    --color-pending: #6b7280;
    --color-surface: #ffffff;
    --color-border: #e5e7eb;
    --color-text: #111827;
    --color-text-secondary: #6b7280;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Size variants */
.sb-review-card.size-sm[b-ibcxdwaq8a] {
    height: fit-content;
    width: 100%;
}

.sb-review-card.size-md[b-ibcxdwaq8a] {
    height: fit-content;
    width: 100%;
}

.sb-review-card.size-lg[b-ibcxdwaq8a] {
    height: fit-content;
    width: 100%;
}

.sb-review-card:hover[b-ibcxdwaq8a] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: #d1d5db;
}

.sb-review-card:focus-visible[b-ibcxdwaq8a] {
    outline: 2px solid var(--color-success);
    outline-offset: 2px;
    box-shadow: var(--shadow-md);
}

/* Status badge */
.sb-review-card-status-badge[b-ibcxdwaq8a] {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.pill[b-ibcxdwaq8a] {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    
    border-radius: 0px 0px 0px 8px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    
    position: relative;
    top: -14px;
    right: -14px;
    z-index: 10;
}

.pill-success[b-ibcxdwaq8a] {
    background: var(--color-success);
    color: white;
}

.pill-warning[b-ibcxdwaq8a] {
    background: var(--color-warning);
    color: white;
}

.pill-info[b-ibcxdwaq8a] {
    background: var(--color-info);
    color: white;
}

.pill-pending[b-ibcxdwaq8a] {
    background: var(--color-pending);
    color: white;
}

/* Card body */
.sb-review-card-body[b-ibcxdwaq8a] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    gap: 12px;
}

.sb-review-card-content[b-ibcxdwaq8a] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* Badge Icon */
.sb-review-card-icon[b-ibcxdwaq8a] {
    max-height: 18px;
    max-width: 18px;
    flex-direction: column;
    display: flex;
    overflow: hidden;
}
.sb-review-card-title[b-ibcxdwaq8a] {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.sb-review-card-subtitle[b-ibcxdwaq8a] {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.sb-review-card-description[b-ibcxdwaq8a] {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    flex: 1;
}

/* Meta information */
.sb-review-card-meta[b-ibcxdwaq8a] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--color-border);
}

.sb-review-card-requester[b-ibcxdwaq8a],
.sb-review-card-reviewer[b-ibcxdwaq8a],
.sb-review-card-date[b-ibcxdwaq8a] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.sb-review-card-requester i[b-ibcxdwaq8a],
.sb-review-card-reviewer i[b-ibcxdwaq8a],
.sb-review-card-date i[b-ibcxdwaq8a] {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.sb-review-card-requester span[b-ibcxdwaq8a],
.sb-review-card-reviewer span[b-ibcxdwaq8a],
.sb-review-card-date span[b-ibcxdwaq8a] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Status-based border colors */
.sb-review-card.status-completed[b-ibcxdwaq8a] {
    border-left: 4px solid var(--color-success);
}

.sb-review-card.status-reviewed[b-ibcxdwaq8a] {
    border-left: 4px solid var(--color-warning);
}

.sb-review-card.status-signed[b-ibcxdwaq8a] {
    border-left: 4px solid var(--color-info);
}

.sb-review-card.status-pending[b-ibcxdwaq8a] {
    border-left: 4px solid var(--color-pending);
}
