/* Dark mode styles for collaboration section */
@media (prefers-color-scheme: dark) {
    .collaboration-requests,
    .requests-list,
    .empty-state {
        background-color: #1a1a1a !important;
        color: #ffffff !important;
    }
    
    .collaboration-requests p,
    .empty-state p {
        color: #cccccc !important;
    }
}

/* Force dark mode for collaboration elements */
body.dark-mode .collaboration-requests,
body.dark-mode .requests-list,
body.dark-mode .empty-state {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

body.dark-mode .collaboration-requests p,
body.dark-mode .empty-state p {
    color: #cccccc !important;
}