/* Base styles for the Yeahost Design System - aligned with Frontend */
:root {
    --wall-max: 730px;
    --openframe-width: 20px;
    --gap: 20px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #FEFAF1;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text);
    min-height: 100vh;
}

.yeahost-frame {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Wall: 730px breit, zentriert, Flex-Container für 3 Spalten (wie Frontend) */
.yeahost-wall {
    display: flex;
    width: var(--wall-max, 730px);
    max-width: 100%;
    margin: 0 auto;
    flex-grow: 1;
}

/* Openframe-Balken: links/rechts, je 20px fix */
.yeahost-left-border,
.yeahost-right-border {
    flex: 0 0 var(--openframe-width, 20px);
    width: var(--openframe-width, 20px);
    min-width: var(--openframe-width, 20px);
    background-color: var(--openframe-left);
    flex-shrink: 0;
}

.yeahost-right-border {
    background-color: var(--openframe-right);
}

/* Content-Container: Breite = 100% - 40px (zwei Gaps), mittig */
.yeahost-content-wrapper {
    width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    box-shadow: none;
}

.yeahost-content {
    flex-grow: 1;
    padding: 1.25rem;
}

/* Header Styles */
.yeahost-header {
    background-color: var(--tile-bg);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.yeahost-header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem 0;
}

.yeahost-header-nav {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.yeahost-header-nav a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
}

.yeahost-header-nav a:hover {
    text-decoration: underline;
}

/* Main Content */
.yeahost-main {
    padding-bottom: 5rem; /* Space for sticky footer */
}

/* Flash Messages */
.flash-messages {
    margin-bottom: 1rem;
}

.rounded-custom {
    border-radius: 0.3rem;
}

.yeahost-sticky-footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 5rem;
    background-color: var(--tile-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.footer-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #4b5563; /* Gray text */
    font-size: 0.75rem; /* text-xs */
    transition: color 0.2s ease-in-out;
}

.footer-icon-link:hover {
    color: #2563eb; /* Blue on hover */
}

.footer-icon-link img {
    margin-bottom: 0.25rem;
}

/* Yeahost Tiles System - Aligned with Frontend */
.yeahost-tile {
    background-color: var(--tile-bg);
    color: var(--text);
    border-radius: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 1.1rem 1.2rem;
    margin-bottom: 2.2rem;
    transition: box-shadow 0.2s;
}

.yeahost-tile:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tile Variants */
.tile {
    width: 100%;
    background-color: var(--tile-bg);
    color: var(--text);
    border-radius: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 1.1rem 1.2rem;
    margin-bottom: 2.2rem;
    transition: box-shadow 0.2s;
}

.tile:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tile Variants for Flash Messages */
.tile-success {
    border-left: 4px solid #10b981;
}

.tile-error {
    border-left: 4px solid #ef4444;
}

.tile-info {
    border-left: 4px solid var(--accent);
}

.tile-warning {
    border-left: 4px solid #f59e0b;
}

/* Tile Content Elements */
.tile-title-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 1rem 0;
}

.tile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem 0;
}

.tile-text {
    font-size: 0.875rem;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.tile-list {
    font-size: 0.875rem;
    color: var(--text);
    margin: 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.tile-list li {
    margin-bottom: 0.25rem;
}

.tile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tile-actions .btn-primary i,
.tile-actions .btn-secondary i,
.tile-actions .btn-danger i {
    margin-right: 0.5rem;
}

/* Elevator Logo Grid - 5 Spalten */
.elevator-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.elevator-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--tile-bg);
    border-radius: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    aspect-ratio: 1;
}

.elevator-logo-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.elevator-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.elevator-logo-placeholder {
    opacity: 0.5;
    cursor: not-allowed;
}

.elevator-logo-placeholder:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .elevator-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .elevator-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Tile Grid System */
.yeahost-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .yeahost-tiles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .yeahost-tiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

.yeahost-tile-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.yeahost-tile-icon {
    width: 1rem; /* Kleiner: w-4 statt w-8 */
    height: 1rem; /* Kleiner: h-4 statt h-8 */
    margin-right: 0.5rem; /* Weniger Abstand */
    color: #6b7280; /* Einheitlich grau */
}

.yeahost-tile-title {
    font-size: 0.875rem; /* 14px statt 18px */
    font-weight: 600;
    color: #333333; /* Einheitlich grau */
    margin: 0;
}

.yeahost-tile-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0.5rem 0 0 0;
}

/* Einheitliche Tile-Farben (nur Grau) */
.yeahost-tile {
    border-left: 4px solid #e5e7eb; /* Einheitlich grau */
}

/* Slim-Tiles (für Navigation und Übersichten) */
.yeahost-slim-tile {
    background: white;
    border-radius: 0.3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0.5rem; /* Kompakt: p-2 */
    margin-bottom: 0.25rem; /* Sehr wenig Abstand */
    transition: all 0.2s ease-in-out;
}

.yeahost-slim-tile:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

/* Slim-Tile Header (Zeile 1: ID + Titel) */
.yeahost-slim-tile-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.yeahost-slim-tile-id {
    font-size: 0.75rem; /* 12px */
    color: #6b7280;
    font-family: monospace;
    margin-right: 0.5rem;
}

.yeahost-slim-tile-title {
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    color: #333333;
    margin: 0;
}

/* Slim-Tile Content (Zeile 2: Icons + Actions) */
.yeahost-slim-tile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yeahost-slim-tile-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.yeahost-slim-tile-icon {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
    color: #6b7280;
}

.yeahost-slim-tile-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.yeahost-slim-tile-action {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
    color: #6b7280;
    transition: color 0.2s ease-in-out;
}

.yeahost-slim-tile-action:hover {
    color: #003893; /* Blau für Hover */
}

/* Slim-Tile Tags (Zeile 3: Tags) */
.yeahost-slim-tile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.yeahost-slim-tile-tag {
    font-size: 0.75rem; /* 12px */
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.125rem 0.375rem; /* px-1.5 py-0.5 */
    border-radius: 0.25rem;
}

/* ===== FORMULAR-KACHELN - Einheitliches Design basierend auf WordPress Frontend ===== */
/* Alle Module (gudfind, gudbuy, yeahost, townhall, etc.) nutzen diese Styles */

/* Formular-Container (wie .kpo-form im Frontend) */
.yeahost-form-section {
    background: var(--tile-bg, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.3rem;
    padding: 0.8rem;
    margin: 0.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Formular-Header (optional, für Sektionen mit Titel) */
.yeahost-form-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.yeahost-form-section-icon {
    font-size: 1.1rem;
    color: var(--accent, #003893);
    margin-right: 0.5rem;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.yeahost-form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #1f2937);
    margin: 0;
    font-family: 'Barlow Condensed', Arial, sans-serif;
}

.yeahost-form-section-description {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

/* Formular-Felder-Container (Grid für 2 Spalten, responsiv) */
.yeahost-form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

/* Einzelnes Formular-Feld */
.yeahost-form-field {
    display: flex;
    flex-direction: column;
}

.yeahost-form-field-full {
    grid-column: 1 / -1;
}

/* Label (wie .kpo-label im Frontend) */
.yeahost-form-label {
    display: block;
    margin: 0.4rem 0 0.2rem 0;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text, #1f2937);
    font-family: 'Barlow Condensed', Arial, sans-serif;
}

/* Input, Select, Textarea (wie .kpo-input im Frontend) */
.yeahost-form-input,
.yeahost-form-select,
.yeahost-form-textarea {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 0.875rem;
    background-color: var(--tile-bg, #ffffff);
    color: var(--text, #1f2937);
    line-height: 1.4;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.yeahost-form-input:focus,
.yeahost-form-select:focus,
.yeahost-form-textarea:focus {
    outline: 2px solid var(--accent, #003893);
    outline-offset: 2px;
    border-color: transparent;
}

.yeahost-form-textarea {
    min-height: 80px;
    resize: vertical;
    font-family: 'Barlow Condensed', Arial, sans-serif;
}

/* Checkbox-Label (wie .kpo-checkbox-label im Frontend) */
.yeahost-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--text, #1f2937);
    cursor: pointer;
}

.yeahost-form-checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.yeahost-form-checkbox-label span {
    flex: 1;
    line-height: 1.4;
}

/* Sektion (wie .kpo-section im Frontend) */
.yeahost-form-section-item {
    margin: 0.4rem 0;
}

/* Hilfetext (wie .kpo-hint im Frontend) */
.yeahost-form-help,
.yeahost-form-hint {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.25rem;
    line-height: 1.4;
    font-style: italic;
}

/* Actions-Container (wie .kpo-actions im Frontend) */
.yeahost-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.6rem;
    gap: 0.5rem;
}

/* Submit-Button (wie .kpo-submit im Frontend) */
.yeahost-form-submit,
.yeahost-form-submit.btn-primary {
    background: var(--accent, #003893);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    padding: 0.35rem 0.9rem;
    cursor: pointer;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    transition: filter 0.2s ease-in-out;
}

.yeahost-form-submit:hover,
.yeahost-form-submit.btn-primary:hover {
    filter: brightness(0.95);
}

/* Error/Success Messages (wie .kpo-error/.kpo-success im Frontend) */
.yeahost-form-error {
    padding: 0.6rem;
    background: #fff4f4;
    border: 1px solid #f5c2c7;
    border-radius: 0.25rem;
    color: #842029;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.yeahost-form-success {
    padding: 0.6rem;
    background: #d1e7dd;
    border: 1px solid #badbcc;
    border-radius: 0.25rem;
    color: #0f5132;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Responsive: Auf kleinen Bildschirmen 1 Spalte */
@media (max-width: 768px) {
    .yeahost-form-fields {
        grid-template-columns: 1fr;
    }
}

/* Footer - Aligned with Frontend */
footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: var(--tile-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    margin-top: auto;
}

footer .footer-wall {
    display: flex;
    width: var(--wall-max, 730px);
    max-width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

footer .footer-coco {
    width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Footer-Links-Gruppe (Logo + Suchfeld) */
footer .footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    min-width: 0;
}

/* Footer-Content (Logo, Suche, Icons) */
footer .footer-logo {
    display: block;
    width: auto;
    height: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
    text-decoration: none;
}

footer .footer-logo img {
    height: 2rem;
    width: auto;
    border-radius: 0.2rem;
    display: block;
}

/* Footer-Logo als span (wenn kein Hyperlink) */
footer span.footer-logo {
    display: block;
    width: auto;
    height: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Suche */
footer .footer-form {
    display: block;
    flex: 1;
    max-width: 400px;
    margin: 0;
    min-width: 0;
    position: relative;
}

footer .footer-form input[type="text"] {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    background-color: var(--tile-bg);
    color: var(--text);
    line-height: 1.4;
}

footer .footer-form input[type="text"]:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-color: transparent;
}

/* Footer-Icons */
footer .footer-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

footer .footer-icon {
    color: var(--text);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.2s;
}

footer .footer-icon:hover,
footer .footer-icon:focus {
    opacity: 1;
    outline: none;
}

footer .footer-icon img {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

/* Pride-Flagge (Regenbogen-Gradient) - genau wie Frontend */
.y-pride-flag {
    background: linear-gradient(
        to bottom,
        #e40303 0%,
        #e40303 9.09%,
        #ff8c00 9.09%,
        #ff8c00 18.18%,
        #ffed00 18.18%,
        #ffed00 27.27%,
        #008026 27.27%,
        #008026 36.36%,
        #24408e 36.36%,
        #24408e 45.45%,
        #732982 45.45%,
        #732982 54.54%,
        #ffffff 54.54%,
        #ffffff 63.63%,
        #f6a9b8 63.63%,
        #f6a9b8 72.72%,
        #55cdfc 72.72%,
        #55cdfc 81.81%,
        #613915 81.81%,
        #613915 90.9%,
        #000000 90.9%,
        #000000 100%
    );
    height: 100%;
    width: var(--openframe-width, 20px);
    min-height: 40px;
    flex: 0 0 var(--openframe-width, 20px);
}



/* Search Suggestions (für Footer-Suchfeld) */
footer .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tile-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    border-radius: 0 0 0.3rem 0.3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

footer .search-suggestions.hidden {
    display: none;
}

footer .suggestion-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

footer .suggestion-item:last-child {
    border-bottom: none;
}

footer .suggestion-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

footer .suggestion-icon {
    color: var(--text);
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Button Styles - Aligned with Frontend */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--accent);
    color: white;
    border-radius: 0.3rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent);
    opacity: 0.9;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--tile-bg);
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.3rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #ef4444;
    color: white;
    border-radius: 0.3rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-danger:hover {
    background-color: #dc2626;
    opacity: 0.9;
}

.footer-elevator-icon {
    display: flex;
    align-items: center;
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    padding: 0.5rem;
}

.footer-elevator-icon:hover {
    color: #003893;
}

.footer-button {
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.footer-button-primary {
    background-color: #3b82f6;
    color: white;
}

.footer-button-primary:hover {
    background-color: #2563eb;
}

.footer-button-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.footer-button-secondary:hover {
    background-color: #e5e7eb;
}

/* Form Elements */
.form-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.3rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input:invalid {
    border-color: #ef4444;
}

.form-input:valid {
    border-color: #10b981;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.active {
    background-color: #dcfce7;
    color: #166534;
}

.status-badge.inactive {
    background-color: #fef2f2;
    color: #991b1b;
}

/* Project Cards */
.project-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.3rem;
    padding: 1rem;
    transition: all 0.2s ease-in-out;
}

.project-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Event Log */
.event-log {
    max-height: 16rem;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.3rem;
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    background: white;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item:hover {
    background-color: #f9fafb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Wall auf Mobile: 100% Breite, Openframe-Balken bleiben sichtbar */
    .yeahost-wall {
        width: 100%;
    }
    
    .yeahost-left-border,
    .yeahost-right-border,
    footer .y-pride-flag {
        width: var(--openframe-width, 20px);
        min-width: var(--openframe-width, 20px);
    }
    
    .yeahost-content-wrapper {
        width: calc(100% - (2 * var(--gap, 20px)));
    }
    
    footer .footer-wall {
        width: 100%;
    }
    
    footer .footer-logo {
        height: 1.6rem;
        margin-right: 20px;
    }
    
    footer .footer-logo img {
        height: 1.6rem;
    }
    
    footer .footer-form {
        max-width: 38%;
        min-width: 120px;
        margin: 0;
    }
    
    footer input[type="text"] {
        font-size: 0.85rem;
        padding: 0.35rem 0.5rem;
    }
    
    footer .footer-icons {
        gap: 0.4rem;
    }
    
    footer .footer-icon img {
        width: 1.3rem;
        height: 1.3rem;
    }
}