/* Make Anmelden button smaller and less prominent */
.center > a.button {
    padding: 6px 12px;
    font-size: 13px;
    background-color: #e0e0e0;
    color: #666;
    border: 1px solid #ccc;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.center > a.button:hover {
    opacity: 1;
    background-color: #d0d0d0;
}

/* Make Subscribe (Abonnieren) button more prominent */
.home-options a[href*="subscription/form"] {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    margin-right: 15px;
}

.home-options a[href*="subscription/form"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
    background-color: #0052a3;
}

/* Keep Archive link normal */
.home-options a[href*="archive"] {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.home-options a[href*="archive"]:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

/* Adjust spacing */
.home-options {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}