/* Container Algemeen */
.astro-timeline, .astro-moon-widget {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 1. Maanfase Widget */
.astro-moon-widget {
    display: flex;
    align-items: center;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 15px 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.moon-icon {
    font-size: 3rem;
    margin-right: 20px;
    line-height: 1;
}

.moon-info h4 {
    margin: 0 0 5px 0;
    color: #8b949e;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moon-info .moon-name {
    margin: 0 0 4px 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
}

.moon-info .moon-desc {
    margin: 0;
    color: #c9d1d9;
    font-size: 0.9rem;
}

/* 2. Astro Events Timeline */
.astro-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.astro-card {
    background: #0d1117;
    color: #e6edf3;
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.astro-card:hover {
    border-color: #58a6ff;
    transform: translateY(-2px);
}

.astro-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.astro-badge {
    background: #1f6feb;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.astro-date {
    font-size: 0.85rem;
    color: #8b949e;
}

.astro-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #ffffff;
}

.astro-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #c9d1d9;
    margin-bottom: 15px;
}

.astro-meta-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #21262d;
    font-size: 0.85rem;
    color: #8b949e;
}

.astro-meta-footer strong {
    color: #58a6ff;
}

.astro-empty {
    text-align: center;
    padding: 20px;
    background: #0d1117;
    border: 1px dashed #30363d;
    border-radius: 8px;
    color: #8b949e;
}