.social-links {
    margin-top: 20px;
    text-align: center;
}
.social-links a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    text-decoration: none;
    color: #f5f5f5;            
    font-weight: bold;
    border: 2px solid #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}
.social-links a:hover {
    background-color: #00FF00;
    color: #121212;
    border-color: #00FF00;
}
.social-links i {
    margin-right: 8px;        
}
header {
    /*text-align: center;*/
}

#events-list .date-column {            
    white-space: nowrap;
    color:#00FF00
}

/* Green color for light color scheme (Default) */
/* Can be forced with data-theme="light" */
[data-theme=light],
:root:not([data-theme=dark]),
:host:not([data-theme=dark]) {
  --pico-text-selection-color: rgb(200, 255, 0);
  --pico-primary: #00FF00;
  --pico-primary-background: #00FF00;
  --pico-primary-underline: rgb(214, 252, 2);
  --pico-primary-hover: #00ff15;
  --pico-primary-hover-background: #00FF00;
  --pico-primary-focus: rgb(187, 255, 0);
  --pico-primary-inverse: #fff;
}

/* Green color for dark color scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme]),
  :host:not([data-theme]) {
    --pico-text-selection-color: rgb(200, 255, 0);
    --pico-primary: #00FF00;
    --pico-primary-background: #00FF00;
    --pico-primary-underline: rgb(214, 252, 2);
    --pico-primary-hover: #00ff15;
    --pico-primary-hover-background: #00FF00;
    --pico-primary-focus: rgb(187, 255, 0);
    --pico-primary-inverse: #fff;
  }
}
/* Green color for dark color scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme=dark] {
    --pico-text-selection-color: rgb(200, 255, 0);
    --pico-primary: #00FF00;
    --pico-primary-background: #00FF00;
    --pico-primary-underline: rgb(214, 252, 2);
    --pico-primary-hover: #00ff15;
    --pico-primary-hover-background: #00FF00;
    --pico-primary-focus: rgb(187, 255, 0);
    --pico-primary-inverse: #fff;
}