/* Base styles */
body {
    background-color: #f5f5dc;
    color: #000;
    font-family: 'Triodion', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header and navigation */
.top-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 100px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0 20px;
    box-sizing: border-box;
    border-bottom: 2px solid #ddd;
}

.top-banner .banner-logo {
    height: 80px;
    flex: 0 0 auto;
}

.top-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.top-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.5em;
}

.top-nav a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.user-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delete-account-icon {
    font-size: 1.3em;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.delete-account-icon:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.user-name {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 1.05em;
    white-space: nowrap;
    color: #000;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, .15);
    background: rgba(0, 0, 0, .06);
}

/* Sections */
section {
    margin-top: 100px;
    width: 100%;
}

h1 {
    font-size: 3em;
    text-align: center;
    color: #000;
    margin-top: 50px;
}

h2 {
    color: #000;
    font-size: 2.5em;
}

h3 {
    color: #000;
    font-size: 1.4em;
}

p {
    color: #333;
}

/* Notices */
.notice {
    max-width: 400px;
    margin: 15px auto;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: left;
    color: #333;
}

.notice.ok {
    color: #0a7a2f;
}

.notice.error {
    color: #b00020;
}

