/*
* FooGallery Custom CSS
* This file is created by adding custom CSS on FooGallery Settings page in wp-admin
* Created : 18 Nov 2025, 5:50 pm
*/

/* Allgemeine Button-Styling für Jahres-Buttons */
.dp-year-btn a {
  display: inline-block;
  padding: 6px 14px;
  color: #239D60;              /* normal Gruen */
  background: #ffffff;         /* weiss */
  border: 2px solid #239D60;   /* gruene Umrandung */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Hover: Hintergrund wird Gruen, Text wird weiss */
.dp-year-btn a:hover {
  background: #239D60;
  color: #ffffff;
}

/* Klick (active) */
.dp-year-btn a:active {
  background: #1b7e4c;
  border-color: #1b7e4c;
  color: #ffffff;
}

/* Optional: sichtbarer Fokus fuer Tastatur */
.dp-year-btn a:focus {
  outline: none;
  box-shadow: 0 0 4px #239D60;
}