body {
    background-color: #121212;
    font-family: 'Segoe UI', system-ui, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 180px); 
    gap: 15px;
    padding: 20px;
}

.card {
    background: #1e1e1e;
    border-radius: 24px;
    padding: 20px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    transition: transform 0.2s ease;
}

.card:hover { transform: translateY(-3px); }

/* Elementer der fylder hele bredden */
.profile, .weather, .search-card {
    grid-column: span 2;
}

.profile {
    background: linear-gradient(135deg, #2d3436, #1a1a1a);
    text-align: center;
}

/* NYT: Styling af søgefelt-kortet */
.search-card {
    background: #1e1e1e;
    padding: 15px;
    border-bottom: 4px solid #65a30d; /* Agri-grøn indikator */
}

.search-card form {
    display: flex;
    width: 100%;
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #444;
}

.search-card input[type="text"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: white;
    font-size: 14px;
    outline: none;
}

.search-card input[type="submit"] {
    background: #333;
    border: none;
    color: #888;
    padding: 0 15px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.search-card input[type="submit"]:hover {
    background: #444;
    color: white;
}

.weather {
    height: 150px;
    padding: 0;
    overflow: hidden;
}

/* Farve-indikatorer */
.chat { border-bottom: 4px solid #0084ff; }
.links { border-bottom: 4px solid #ff9f43; }
.nas { border-bottom: 4px solid #1dd1a1; }
.nas2 { border-bottom: 4px solid #ee5253; }

#clock { font-size: 2.8rem; margin: 0; font-family: monospace; }
p { margin: 5px 0 0; font-size: 12px; color: #888; letter-spacing: 1px; }
h2 { font-size: 15px; margin: 0; font-weight: 500; }
.icon { font-size: 30px; margin-bottom: 5px; }
