/* CSS für die Profilseite */ .form-container #articlesFromUser { flex: 1 1 450px; padding: 30px; background-color: white; border: 1px solid #dbe3ec; border-radius: 10px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); box-sizing: border-box; } .profile-layout-container { display: flex; flex-direction: row; flex-wrap: wrap; gap: 30px; width: 100%; align-items: flex-start; } /* 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; } /* --- RESPONSIVE DESIGN (MOBILGERÄTE) --- */ @media (max-width: 760px) { .profile-layout-container { flex-direction: column; } }