.sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: white;
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    font-family: inherit;
    font-size: inherit;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h4 {
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.sidebar-content {
    padding: 20px;
    font-family: inherit;
    font-size: 14px;
}

.sidebar-content h5 {
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.error-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border-left-danger {
    border-left: 4px solid #dc3545 !important;
}

.error-message p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.error-time {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}

.no-errors {
    color: #28a745;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

.close-sidebar {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.close-sidebar:hover {
    background-color: rgba(0,0,0,0.1);
    border-radius: 50%;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.report-link {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}

.report-link:hover {
    text-decoration: underline;
}