/*

   Qualitouch styles

*/

/*
  wp admin bar ausblenden
*/

.show-admin-bar {
    display: none;
}

/*
 generell
*/

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.main-container {
    min-height: 100vh;
}


/*
  radio group stylen
*/

.radio-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0;
}

.legend {
    width: 100px;
    font-size: 16px;
    color: #333;
}


.radio-group {
    flex-grow: 1;
    background: linear-gradient(to right, white, #aaa);
    padding: 14px 20px 2px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
}

.radio-group.no-legend {
    background: #eee; /* entfernt den Verlauf */
}


.radio-group input[type="radio"] {
    transform: scale(1.5);
    margin: 0 0 6px 0;
    line-height: 1;
    flex-shrink: 0; /* verhindert, dass er das Layout sprengt */
}

.radio-group label {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 10px;
    font-size: 10px;
    padding: 5px;
    line-height: 1.2;
}

.radio-group.two-options {
    justify-content: center; /* oder space-around */
    gap: 30px; /* optional für Abstand zwischen den beiden */
}


/*
  formulare in Bereiche unterteilen
*/
           
.input-group-box {
    border: 1px solid #ced4da; /* Dezenter grauer Rand */
    background-color: #f9f9f9; /* f1f3f5 Heller grauer Hintergrund */
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.input-group-box:hover {
    background-color: #f1f3f5; /* Heller beim Hover (leichtes Highlight) */
    cursor: pointer; /* Optional: Zeigt Interaktivität */
}

/*
  Bereich Titel und Into Formatieren
*/

.bereich-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    margin-bottom: 8px;
}

.bereich-intro {
    font-size: 17px;
    font-weight: normal;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
}

/*
  menü format
*/

.action-heading {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.action-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.action-item a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: background 0.2s ease;
}

.action-item a:hover {
  background: #eef5ff;
  text-decoration: none; 
}

.action-title {
  font-size: 2.1rem;
  color: #2c3e50;
}

.action-desc {
  color: #555;
  font-size: 1.8rem;
  margin-top: 0.25rem;
}

.icon {
  min-width: 30px;
} 


/*
  patienten header format
*/
.patient-header {
    background: #f9f9f9;
    margin-bottom: 20px; /* Abstand zum nächsten Element */
    border: 1px solid #ced4da; /* Dezenter grauer Rand */
    /* border-left: 4px solid #0073aa; */
    padding: 12px 16px; 
    padding-left: 10px;  /* Kein Abstand links */
    /* margin: 20px 0; */
    border-radius: 8px; 
    font-family: Arial, sans-serif;
    /*color: #333; */
}

.patient-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 4px;
}

.patient-name .year-birthday {
    font-weight: normal;
    font-size: 22px;
    color: #666;
}

.app-user {
    font-size: 22px;
    color: #555;
    margin-top: 6px;
}

.user-email {
    font-style: italic;
    color: #0073aa;
}