/* Global Styles */
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
}

body {
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('/images/web_startseite_slider_03_2021.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 32px;
    width: auto;
}

.header-menu {
    flex: 0 0 auto;
}

/* Dashboard Editor */
.dashboard {
    height: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.language-button {
    min-width: 60px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.language-button:hover {
    text-decoration: none;
}

/* Auto Refresh Controls */
.auto-refresh-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.auto-refresh-controls .refresh-interval-dropdown {
    min-width: 80px;
}

/* Home Container */
.home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Wallboard Grid */
.wallboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.wallboard-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wallboard-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.wallboard-card-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
}

.wallboard-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    word-break: break-word;
}