/* Grundstruktur und Theme-Defaults */
body.tree-bg-default {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}
.custom-box {
  border-radius: 25px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
}
.glasslight {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      color: black;
    }

.glasslight::before {
      content: '';
      position: absolute;
      top: -6px;
      left: -6px;
      right: -6px;
      bottom: -6px;
      border-radius: inherit;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
      pointer-events: none;
      z-index: -1;
      mask: radial-gradient(ellipse at center, transparent 60%, black 100%);
    }
.tree-container {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.tree-header {
    width: 100%;
    height: 160px;
    background: url("../../CREATOR/gfx/treeheadertop.png") no-repeat center center;
    background-size: cover;
    position: relative;
}

.tree-header-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Profilbild Wrapper (positioniert sich überlappend am unteren Rand des Headers) */
.tree-profile-pic-wrapper {
    position: absolute;
    top: 10px; /* 160px Höhe Header minus Hälfte Profilbild Höhe */
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border: 5px solid white;
    border-radius: 50%;
    overflow: hidden;
    background: #fdd; /* hellrot als Default fallback */
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    z-index: 10;
}

.tree-profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Inhaltsebene */
.tree-content {
     /* Platz für das Profilbild */
    padding: 0 20px 0px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Username */
.tree-username {
    margin-top: 140px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

/* Infotext */
.tree-userinfo {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    white-space: pre-wrap;
}

/* Links als Buttons */
.tree-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tree-link-button {
    background-color: #cc0000; /* rot */
    color: #fff;
    padding: 14px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.tree-link-button:hover,
.tree-link-button:focus {
    background-color: #a30000;
    outline: none;
}
.tree-link-button-success {
    background-color: #00a400; /* rot */
    color: #fff;
    padding: 14px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(204, 0, 0, 0.4);
}

.tree-link-button-success:hover,
.tree-link-button-success:focus {
    background-color: #00a400;
    outline: none;
}
.tree-link-button-error {
    background-color: #fff; /* rot */
    color: #ff0000;
    border-color: #ff0000;
    padding: 14px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(204, 0, 0, 0.4);
}

.tree-link-button-error:hover,
.tree-link-button-error:focus {
    background-color: #fff;
}

/* Accordion */
.tree-accordion-button {
    background-color: #cc0000;
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    margin: 0 auto 16px;
    display: block;
    max-width: 280px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(204, 0, 0, 0.4);
}

.tree-accordion-button:hover,
.tree-accordion-button:focus {
    background-color: #a30000;
    outline: none;
}

.tree-accordion-content {
    max-width: 95%;
    margin: 0 auto 20px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 20px;
    box-sizing: border-box;
    font-size: 0.95rem;
    color: #333;
}

/* Formular im Accordion */
.tree-news-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.tree-news-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical;
    font-size: 1rem;
    font-family: inherit;
}

.tree-submit-button {
    margin-top: 10px;
    background-color: #cc0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.tree-submit-button:hover,
.tree-submit-button:focus {
    background-color: #a30000;
    outline: none;
}

/* Werbebanner */
.tree-banner img {
    width: 100%;
    max-width: 480px;
    margin-top: 30px;
    border-radius: 10px;
    display: block;
}

/* Responsive */
@media (max-width: 500px) {
    .tree-container {
        max-width: 95vw;
        margin: 10px auto;
    }
    .tree-header {
        height: 100px;
    }
    .tree-username {
        margin-top:110px;
    }
    .tree-header-img {
        height: 120px;
    }
    .tree-profile-pic-wrapper {
        width: 90px;
        height: 90px;
        border-width: 4px;
    }
    .tree-content {
        padding: 0 15px 15px 15px;
    }
    .tree-username {
        font-size: 1.5rem;
    }
    .tree-link-button,
    .tree-accordion-button,
    .tree-submit-button {
        font-size: 0.9rem;
        padding: 12px 16px;
        max-width: 100%;
    }
}
small {
  font-size: 0.7rem;   /* Standard ist etwa 0.875rem */
  color: darkslategrey; 
}
h5 {
  color: darkslategrey!important;
  font-size: 0.7rem !important;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

h5 a {
  color: darkslategrey!important;
  text-decoration: none !important;
}

h5 a:hover,
h5 a:focus {
  color: darkslategrey!important;
  text-decoration: none !important;
}
.accordion-item {
  border: none !important;
}
.footertext {
    color:#fff;
    font-size:0.75rem
}
a.footerlink {
  color: #fff;                /* Standard-Linkfarbe (Bootstrap-Blau) */
  text-decoration: none;        /* Kein Unterstrich */
  font-weight: 500;             /* Leicht hervorgehoben */
  transition: color 0.3s ease, text-decoration 0.3s ease;
  cursor: pointer;              /* Zeigt klickbaren Link an */
}
a.footerlink:hover,
a.footerlink:focus {
  color: #cc0000;               /* Dunkleres Blau beim Hover/Focus */
  text-decoration: underline;   /* Unterstrich beim Hover/Focus */
  outline: none;                /* Entfernt Standard-Focus-Outline */
}
a.footerlink:active {
  color: #fff;               /* Noch dunkler bei Klick */
}
a.footerlink:visited {
  color: #fff;               /* Lila für besuchte Links */
}
.daten-box{
    max-width:480px;
    margin: 0 auto;
}
a.impressumslink {
  color: #fff;                /* Standard-Linkfarbe (Bootstrap-Blau) */
  text-decoration: none;        /* Kein Unterstrich */
  font-weight: 500;             /* Leicht hervorgehoben */
  transition: color 0.3s ease, text-decoration 0.3s ease;
  cursor: pointer;              /* Zeigt klickbaren Link an */
    font-size: 0.875rem
}
a.impressumslink:hover,
a.impressumslink:focus {               /* Dunkleres Blau beim Hover/Focus */
  text-decoration: none;   /* Unterstrich beim Hover/Focus */
  outline: none;                /* Entfernt Standard-Focus-Outline */
}
.impressumsdaten{
   color:#fff;
    font-size:0.875rem 
}
.impressumstext{
   color:#fff;
    font-size:0.625rem 
}

/* Kein CSS-Inhalt gefunden */