/* Additional component styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #141414;
    border: 1px solid rgba(125, 249, 5, 0.08);
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #7df905;
}

/* Subscription Options */
.subscription-options {
    padding: 1rem 0;
}

.price-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2.5rem;
    color: #7df905;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: -0.5px;
}

.original-price {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 1.2rem;
    font-family: 'Roboto Mono', monospace;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.option-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(125, 249, 5, 0.1);
    border-radius: 4px;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237df905' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.option-group select:focus {
    outline: none;
    border-color: #7df905;
}

.option-group select:hover {
    border-color: rgba(125, 249, 5, 0.3);
}

.option-group select option {
    background: #111111;
    color: white;
    padding: 0.5rem;
}

.purchase-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(20, 20, 20, 0.96);
    border-left: 4px solid #63c704;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    z-index: 2000;
    will-change: transform, opacity;
    backdrop-filter: saturate(120%) blur(4px);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Toast variants */
.toast-info { border-left-color: #63c704; }
.toast-success { border-left-color: #2ecc71; }
.toast-warning { border-left-color: #f1c40f; }
.toast-error { border-left-color: #ff453a; }

.toast i { font-size: 1.1rem; opacity: 0.95; }
.toast-success i { color: #2ecc71; }
.toast-warning i { color: #f1c40f; }
.toast-error i { color: #ff6b60; }

@media (prefers-reduced-motion: reduce) {
    .toast { transition: none; }
}

/* Loading spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #63c704;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: #141414;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #141414;
}

.tooltip.show {
    opacity: 1;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(45deg, #63c704, #7df905);
    color: white;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Forum Components */
.topics-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* XenForo-style Message Layout - Enhanced with design tokens */
.message {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-1);
}

.message:hover {
    border-color: var(--border-strong);
    box-shadow: 0 12px 36px rgba(0,0,0,0.55);
}

.message-inner {
    display: flex;
    min-height: 120px;
}

/* User Info Panel */
.message-cell--user {
    width: 200px;
    min-width: 200px;
    background: var(--bg-1);
    border-right: 1px solid var(--border);
    position: relative;
}

.message-user {
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.message-avatar {
    margin-bottom: 1rem;
}

.message-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.avatar {
    display: block;
    text-decoration: none;
}

.avatar-img {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(125, 249, 5, 0.2);
    object-fit: cover;
    transition: all 0.3s ease;
}

.avatar:hover .avatar-img {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(125, 249, 5, 0.3);
}

}.message-avatar-offline {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: var(--text-2);
    border: 2px solid var(--bg-2);
    border-radius: 50%;
}

/* Forum-only avatar overrides to remove circular outline/border */
.forums-section .avatar {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: inline-block;
}
.forums-section .avatar-img {
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: none;
}
.forums-section .avatar:hover .avatar-img {
    box-shadow: none;
}

/* XP bar styles */
.forums-section .user-xp { margin: 0.5rem 0 0.25rem; }
.forums-section .xp-label { color: var(--text-2); font-size: 0.8rem; margin-bottom: 0.25rem; }
.forums-section .xp-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.forums-section .xp-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.forums-section .user-hpc { color: var(--text-1); font-size: 0.9rem; margin-top: 0.25rem; }

.message-userDetails {
    margin-bottom: 1rem;
}

.message-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.username {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.username:hover {
    color: var(--accent-2);
}

.username--style {
    color: inherit;
}

.userTitle {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-1);
    font-weight: normal;
}

.userBanner {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(45deg, rgba(125, 249, 5, 0.1), rgba(125, 249, 5, 0.2));
    border: 1px solid rgba(125, 249, 5, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.message-userExtras {
    font-size: 0.875rem;
    color: var(--text-1);
}

.pairs {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pairs--justified {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border);
}

.pairs--justified:last-child {
    border-bottom: none;
}

.pairs dt {
    font-weight: normal;
    color: var(--text-2);
}

.pairs dd {
    margin: 0;
    color: var(--text-0);
    font-weight: 500;
}

.message-userArrow {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--bg-1);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    z-index: 2;
}

/* Message Main Content Area */
.message-cell--main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.message-main {
    flex: 1;
    padding: 1.5rem;
}

/* Message Attribution Header */
.message-attribution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.message-attribution-main {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.message-attribution-opposite {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.listInline {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.u-concealed a {
    color: var(--text-1);
    text-decoration: none;
    font-size: 0.875rem;
}

.u-concealed a:hover {
    color: var(--accent);
}

.u-dt {
    font-size: 0.875rem;
}

.messageOwner-Indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
}

.messageOwner-Indicator i {
    color: var(--accent);
}

.message-newIndicator {
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.message-attribution-gadget {
    color: var(--text-1);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.message-attribution-gadget:hover {
    color: var(--accent);
}

/* Message Content */
.message-content {
    margin-bottom: 1.5rem;
}

.message-userContent {
    line-height: 1.6;
}

.message-body {
    color: var(--text-0);
    font-size: 1rem;
}

.bbWrapper {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message-signature {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(125, 249, 5, 0.15);
    color: var(--text-1);
    font-size: 0.875rem;
}

/* Message Actions Footer */
.forums-section .message-footer {
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    background: transparent;
}

.message-actionBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actionBar-set {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.forums-section .actionBar-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-1);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    cursor: pointer;
}

.forums-section .actionBar-action:hover {
    color: var(--accent);
    background: transparent;
}

.actionBar-action--reaction {
    color: var(--text-1);
}

.actionBar-action--reaction:hover {
    color: var(--accent);
}

.actionBar-action--reply {
    color: var(--text-1);
}

.actionBar-action--reply:hover {
    color: var(--accent);
}

.actionBar-action--report {
    color: var(--text-2);
}

.actionBar-action--report:hover {
    color: #ff6b60;
}

/* Rich Text Editor Styles */
.message--quickReply {
    border: 1px solid rgba(125, 249, 5, 0.2);
    background: var(--bg-2);
}

.message--quickReply .message-cell--user {
    width: 120px;
    min-width: 120px;
    background: var(--bg-1);
}

.message--quickReply .message-user {
    padding: 1rem 0.75rem;
}

.message--quickReply .avatar-img {
    width: 60px;
    height: 60px;
}

.message-editorWrapper {
    padding: 1.5rem;
}

.message-editor {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.editor-toolbar {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-0);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.editor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.editor-btn:hover {
    background: rgba(125, 249, 5, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.editor-btn:active {
    background: rgba(125, 249, 5, 0.2);
    transform: translateY(1px);
}

.editor-input {
    width: 100%;
    min-height: 150px;
    padding: 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-0);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
}

.editor-input::placeholder {
    color: var(--text-2);
}

/* Form Button Groups */
.formButtonGroup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.formButtonGroup-primary {
    display: flex;
    gap: 1rem;
}

.forums-section .button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.forums-section .button--primary {
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    color: #000;
    box-shadow: var(--shadow-1);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 249, 5, 0.3);
}

.forums-section .button--icon {
    position: relative;
}

.forums-section .button-text {
    margin-left: 0.25rem;
}

/* Forum Table Styles - Enhanced */
.forums-section .table {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-1);
}

.forums-section .thead {
    background: var(--bg-1);
    border-bottom: 2px solid var(--border);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 2rem;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forums-section .table .row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    align-items: center;
}

.forums-section .table .row:hover {
    background: rgba(125, 249, 5, 0.03);
    border-left: 3px solid var(--accent);
    padding-left: calc(1.5rem - 3px);
}

.table .row:last-child {
    border-bottom: none;
}

.forums-section .forum-icon {
    color: var(--accent);
    font-size: 1.25rem;
}

.forums-section .cell-meta {
    color: var(--text-1);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.forums-section .table .row > div:nth-child(2),
.table .row > div:nth-child(3) {
    color: var(--text-0);
    font-weight: 500;
    text-align: center;
}

.forums-section .table .row a {
    color: var(--text-0);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forums-section .table .row a:hover {
    color: var(--accent);
}

.forums-section .card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-1);
}

.forums-section .form {
    display: grid;
    gap: 1rem;
}

.forums-section .label {
    color: var(--text-1);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.forums-section .input {
    padding: 0.75rem 1rem;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-0);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.forums-section .input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(125, 249, 5, 0.12);
}

.forums-section .btn.primary {
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    color: #000;
    font-weight: 600;
}

/* Responsive Table */
@media (max-width: 768px) {
    .table .thead {
        display: none;
    }
    
    .table .row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .table .row > div:nth-child(2),
    .table .row > div:nth-child(3) {
        text-align: left;
    }
    
    .table .row > div:last-child {
        margin-top: 1rem;
    }
}

.topic-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(125, 249, 5, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.topic-card:hover {
    border-color: #7df905;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 249, 5, 0.12);
}

.topic-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topic-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.topic-info h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topic-info h3 a:hover {
    color: #7df905;
}

.topic-meta {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.topic-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topic-meta i {
    color: #7df905;
}

.topic-latest {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Legacy post styles - keeping for backwards compatibility */
.post {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(125, 249, 5, 0.08);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.post-header {
    background: rgba(125, 249, 5, 0.06);
    padding: 1rem;
    border-bottom: 1px solid rgba(125, 249, 5, 0.08);
}

.post-info {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-body {
    padding: 1.5rem;
    line-height: 1.6;
}

.reply-form {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(125, 249, 5, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.reply-form h3 {
    margin: 0 0 1rem 0;
    color: #fff;
}

.new-topic-form {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(125, 249, 5, 0.08);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin: 0;
    color: #7df905;
}

/* Enhanced Breadcrumb Navigation */
.forums-section .breadcrumbs {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.forums-section .breadcrumbs a {
    color: var(--text-1);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.forums-section .breadcrumbs a:hover {
    color: var(--accent);
    background: rgba(125, 249, 5, 0.08);
}

.breadcrumbs > *:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: rgba(125, 249, 5, 0.6);
    font-weight: bold;
}

/* Section Headers */
.forums-section .section-header h1,
.forums-section .section-header h2 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(125, 249, 5, 0.3);
}

.forums-section .section-header p {
    color: var(--text-1);
    font-size: 1.1rem;
    margin: 0;
}

.no-topics {
    text-align: center;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(125, 249, 5, 0.08);
    border-radius: 10px;
}

.no-topics p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Messages */
@media (max-width: 968px) {
    .message-inner {
        flex-direction: column;
    }
    
    .message-cell--user {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(125, 249, 5, 0.08);
    }
    
    .message-user {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        text-align: left;
    }
    
    .message-avatar {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .avatar-img {
        width: 64px;
        height: 64px;
    }
    
    .message-userDetails {
        margin-bottom: 0;
        flex: 1;
    }
    
    .message-userExtras {
        display: none;
    }
    
    .message-userArrow {
        display: none;
    }
    
    .message-main {
        padding: 1rem;
    }
    
    .editor-toolbar {
        padding: 0.75rem;
        gap: 0.25rem;
    }
    
    .editor-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .topic-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .message-attribution {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .message-attribution-opposite {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .actionBar-set {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .message-actionBar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .formButtonGroup {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button {
        justify-content: center;
        width: 100%;
    }
}
