/*
CSS für die Profilseite
 */

/* Roter Button für Account löschen */
.delete-account-button {
    background-color: #dc2626;
    margin-bottom: 0;
}

.delete-account-button:hover {
    background-color: #b91c1c;
}

/* Beitragsliste Styling */
.section-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: #1f2937;
    border-bottom: 2px solid #eef2f7;
    padding-bottom: 10px;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #f9fafb;
    position: relative;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.article-category {
    font-weight: bold;
    color: #2563eb;
}

.article-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #1f2937;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.tag {
    font-size: 0.75rem;
    background-color: #e5e7eb;
    color: #374151;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Bearbeiten-Button als Link deklariert */
.edit-link-button {
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    color: #2563eb;
    border: 1px solid #2563eb;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.edit-link-button:hover {
    background-color: #2563eb;
    color: white;
}