/*
Theme Name: Martinhart
Theme URI: https://example.com/
Description: Child theme for Twenty Twenty-Five
Author: Your Name
Author URI: https://example.com/
Template: twentytwentyfive
Version: 1.0
Text Domain: martinhart
*/

/* Add your custom styles below */

/* Neutral default state */

/* Normalize BOTH buttons completely */
.choice-button-dum .wp-block-button__link,
.choice-button-byt .wp-block-button__link {
  background: brown !important;
  color: #fff !important;
  border: 2px solid brown !important;
  border-radius: 999px;
  padding: 0.6em 1.2em;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.2s ease;
}

.choice-button-dum .wp-block-button__link,
.choice-button-byt .wp-block-button__link {
  background: brown;
  color: #fff;
  border-color: brown;
  transition: all 0.2s ease;
}

/* Active button states */
.choice-dum .choice-button-dum .wp-block-button__link,
.choice-byt .choice-button-byt .wp-block-button__link {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

.choice-byt .choice-button-byt .wp-block-button__link {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Dim opposite content only after a choice exists */
.choice-dum .choice-byt,
.choice-byt .choice-dum {
  transition: opacity 0.2s ease;
}

.choice-dum .choice-byt {
  opacity: 0.3;
}

.choice-byt .choice-dum {
  opacity: 0.3;
}

.choice-button-dum,
.choice-button-byt {
  border-radius: 999px;
}

