/* Add any additional styles for dark mode here */
body.dark-mode .bricks-site-wrapper {
    /* Example: Override specific Bricks Builder elements if needed */
    background-color: var(--bg-color);
    color: var(--text-color);
}

.dark-mode-toggle {
    transition: color 0.3s;
}

body.dark-mode .dark-mode-toggle {
    color: #f1c40f; /* Yellow color for moon icon in dark mode */
}

/* You may need to add more specific selectors to override Bricks Builder styles */