/* CMA — Admin Styles */

.admin-nav {
    background: #2c3e50;
    padding: 0 1.5rem;
}

.admin-nav .nav-brand {
    color: #ecf0f1;
    font-weight: 700;
}

.admin-nav .nav-link {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.admin-nav .nav-link:hover {
    color: #ecf0f1;
    text-decoration: none;
}

.admin-nav .nav-link.active {
    color: #fff;
    border-bottom: 2px solid #3498db;
    padding-bottom: 14px;
}

.admin-nav .nav-user {
    color: #95a5a6;
    font-size: 0.85rem;
}

.admin-nav .nav-divider {
    color: #4a6274;
    font-size: 0.8rem;
}

/* Dashboard Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.25rem;
}

.stat-card h3 {
    font-size: 0.85rem;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.stat-card .stat-detail {
    font-size: 0.85rem;
    color: #636e72;
    margin-top: 0.25rem;
}

/* Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
}

.admin-table th {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #e1e8ed;
}

.admin-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f2f5;
    font-size: 0.9rem;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-active { background: #d4edda; color: #155724; }
.badge-disabled { background: #f8d7da; color: #721c24; }
.badge-archived { background: #e2e3e5; color: #383d41; }
.badge-public { background: #cce5ff; color: #004085; }
.badge-private { background: #fff3cd; color: #856404; }
.badge-unlisted { background: #e2e3e5; color: #383d41; }
.badge-super-admin { background: #f8d7da; color: #721c24; }
.badge-user { background: #e2e3e5; color: #383d41; }
.badge-admin { background: #cce5ff; color: #004085; }
.badge-curator { background: #d4edda; color: #155724; }
.badge-trusted { background: #d1ecf1; color: #0c5460; }
.badge-member { background: #e2e3e5; color: #383d41; }
.badge-revoked { background: #f8d7da; color: #721c24; }
.badge-expired { background: #e2e3e5; color: #383d41; }
.badge-complete { background: #d1ecf1; color: #0c5460; }

/* Page header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.page-header h1 {
    margin: 0;
}

/* Forms */
.admin-form {
    max-width: 640px;
}

.admin-form .form-group {
    margin-bottom: 1.25rem;
}

.admin-form select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #d5dce2;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
}

.admin-form textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #d5dce2;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    min-height: 80px;
    resize: vertical;
}

.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-help {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0.2rem;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Action links in tables */
.action-links {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.action-links a {
    white-space: nowrap;
}

.action-links form {
    display: inline;
}

.btn-sm {
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
}

.btn-danger {
    background: #e74c3c;
    color: #fff;
}
.btn-danger:hover { background: #c0392b; color: #fff; }

.btn-success {
    background: #27ae60;
    color: #fff;
}
.btn-success:hover { background: #219a52; color: #fff; }

/* Flash messages */
.flash-success {
    background: #d4edda;
    color: #155724;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 4px solid #28a745;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 4px solid #dc3545;
}

/* Import Queue */
.import-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.import-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s;
}

.import-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.import-card--imported {
    opacity: 0.5;
}

.import-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f2f5;
    overflow: hidden;
}

.import-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.import-card__no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.8rem;
    color: #95a5a6;
    gap: 0.35rem;
}

.import-card__no-thumb--audio { background: #f0e6ff; color: #7c3aed; }
.import-card__no-thumb--video { background: #e0f2fe; color: #0369a1; }

.import-card__type-icon {
    font-size: 1.25rem;
}

.import-card__imported-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
    padding: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.import-card__meta {
    padding: 0.6rem 0.75rem;
    flex: 1;
}

.import-card__filename {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
}

.import-card__select {
    padding: 0.5rem 0.75rem;
    border-top: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
}

.import-card__select input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Status Filter Tabs */
.status-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e1e8ed;
}

.status-tab {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: #636e72;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}

.status-tab:hover {
    color: #2c3e50;
    text-decoration: none;
}

.status-tab--active {
    color: #2c3e50;
    font-weight: 600;
    border-bottom-color: #3498db;
}

.status-tab__count {
    display: inline-block;
    background: #e1e8ed;
    color: #636e72;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.1rem 0.45rem;
    border-radius: 10px;
    margin-left: 0.3rem;
}

.status-tab--active .status-tab__count {
    background: #3498db;
    color: #fff;
}

/* Moderation Toolbar */
.moderation-toolbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.bulk-action-select {
    padding: 0.3rem 0.6rem;
    border: 1px solid #d5dce2;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
    background: #fff;
}

/* Moderation Card Extensions */
.moderation-card__status-badge {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

.moderation-badge--pending { background: #fff3cd; color: #856404; }
.moderation-badge--approved { background: #d4edda; color: #155724; }
.moderation-badge--flagged { background: #f8d7da; color: #721c24; }
.moderation-badge--hidden { background: #e2e3e5; color: #383d41; }

.moderation-card__actions {
    display: flex;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-top: 1px solid #f0f2f5;
    justify-content: center;
}

.inline-form {
    display: inline;
}

.btn-xs {
    padding: 0.2rem 0.5rem;
    font-size: 0.72rem;
    border-radius: 4px;
}

.btn-warning {
    background: #f39c12;
    color: #fff;
}
.btn-warning:hover { background: #e67e22; color: #fff; }

/* Tag Management */
.tag-color-swatch {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tag-create-form .form-group input[type="text"] {
    width: 100%;
    padding: 0.5rem 0.7rem;
    border: 1px solid #d5dce2;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
}

.tag-create-form .form-group input[type="text"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Entry Detail Sections */
.entry-section {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.entry-section h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.entry-section__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.entry-section__header h1 {
    margin-bottom: 0;
}

/* Entry Assets Grid */
.entry-assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}

.entry-asset-card {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    overflow: hidden;
}

.entry-asset-card__thumb {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f2f5;
    overflow: hidden;
}

.entry-asset-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entry-asset-card__info {
    padding: 0.4rem 0.5rem;
}

.entry-asset-card__title {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #636e72;
}

.entry-asset-card__actions {
    padding: 0.3rem 0.5rem 0.5rem;
    text-align: center;
}

/* Entry Notes */
.entry-notes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.entry-note {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.entry-note__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.entry-note__content {
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.entry-note__actions {
    margin-top: 0.5rem;
}

.btn-secondary {
    background: #e1e8ed;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #d5dce2;
    color: #2c3e50;
}

/* Dashboard */
.dashboard-section-title {
    font-size: 1rem;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.dashboard-section-title:first-of-type {
    margin-top: 0;
}

/* Action Queue Cards */
.dashboard-queue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-queue-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.dashboard-queue-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: #3498db;
    text-decoration: none;
}

.dashboard-queue-card__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
}

.dashboard-queue-card__count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.dashboard-queue-card__count--alert {
    color: #e67e22;
}

.dashboard-queue-card__count--danger {
    color: #e74c3c;
}

.dashboard-queue-card__count--neutral {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3498db;
}

/* Stats Groups */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-stat-group {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.25rem;
}

.dashboard-stat-group h3 {
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f2f5;
}

.dashboard-stat-rows {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dashboard-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
}

.dashboard-stat-row:hover {
    background: #f8f9fa;
}

.dashboard-stat-row__label {
    font-size: 0.9rem;
    color: #636e72;
}

.dashboard-stat-row__value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Storage Card */
.dashboard-storage-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.dashboard-storage-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dashboard-storage-used {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
}

.dashboard-storage-quota {
    font-size: 0.9rem;
    color: #636e72;
}

.dashboard-storage-pct {
    margin-left: auto;
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-storage-pct--ok      { color: #27ae60; }
.dashboard-storage-pct--warning  { color: #e67e22; }
.dashboard-storage-pct--danger   { color: #e74c3c; }

.dashboard-storage-bar-track {
    height: 10px;
    background: #f0f2f5;
    border-radius: 5px;
    overflow: hidden;
}

.dashboard-storage-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.dashboard-storage-bar-fill--ok      { background: #27ae60; }
.dashboard-storage-bar-fill--warning  { background: #e67e22; }
.dashboard-storage-bar-fill--danger   { background: #e74c3c; }

.dashboard-storage-alert {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #e74c3c;
    font-weight: 500;
}

.dashboard-storage-warn {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #e67e22;
}

.dashboard-storage-nolimit {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 0.25rem;
}

/* Quick Links */
.dashboard-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-link-group {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.25rem;
}

.dashboard-link-group h3 {
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f2f5;
}

.dashboard-link {
    display: block;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s;
}

.dashboard-link:hover {
    background: #f0f7ff;
    text-decoration: none;
}

/* Dashboard Activity */
.dashboard-activity {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.dashboard-activity-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-activity-table td {
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid #f0f2f5;
    font-size: 0.9rem;
}

.dashboard-activity-table tr:last-child td {
    border-bottom: none;
}

.dashboard-activity-desc {
    color: #2c3e50;
}

.dashboard-activity-time {
    color: #95a5a6;
    text-align: right;
    white-space: nowrap;
    width: 1%;
}

.dashboard-activity-empty {
    color: #95a5a6;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem 0;
}

/* Comments */
.comments-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e8ed;
}

.comments-section__title {
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 1rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.comment {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.comment--retracted {
    background: #fef9f0;
    border-color: #f0dcc0;
}

.comment__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.comment__date {
    color: #95a5a6;
    font-size: 0.8rem;
}

.comment__edited {
    color: #b0b8c0;
    font-size: 0.75rem;
    font-style: italic;
}

.comment__retracted-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    color: #856404;
    margin-bottom: 0.4rem;
}

.comment__content {
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.comment__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

/* Comment form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-form__input {
    width: 100%;
    min-height: 60px;
    padding: 0.6rem 0.8rem;
    border: 1px solid #d5dce2;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
}

.comment-form__input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.comment-form .btn {
    align-self: flex-end;
}

/* Button links (text-style buttons) */
.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    color: #3498db;
    cursor: pointer;
    font-family: inherit;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-link--danger {
    color: #e74c3c;
}

.btn-link--warning {
    color: #e67e22;
}

/* Asset Edit */
.asset-edit-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 640px) {
    .asset-edit-layout {
        grid-template-columns: 1fr;
    }
}

.asset-edit-preview__img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
}

.asset-edit-preview__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f2f5;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #95a5a6;
}

.asset-edit-preview__meta {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.asset-edit-preview__meta dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.2rem 0.75rem;
}

.asset-edit-preview__meta dt {
    color: #95a5a6;
}

.asset-edit-preview__meta dd {
    color: #2c3e50;
    word-break: break-all;
}

.asset-edit-form input[type="text"] {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #d5dce2;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
}

.asset-edit-form input[type="text"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Reports */
.reports-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.report-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.report-card--open {
    border-left: 4px solid #f39c12;
}

.report-card--resolved {
    border-left: 4px solid #27ae60;
}

.report-card--dismissed {
    border-left: 4px solid #95a5a6;
}

.report-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.report-card__target a {
    font-weight: 600;
}

.report-card__date {
    color: #95a5a6;
    font-size: 0.8rem;
    margin-left: auto;
}

.report-card__reason {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.report-card__meta {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
}

.report-card__notes {
    font-size: 0.85rem;
    color: #636e72;
    background: #f8f9fa;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.report-card__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.report-action-form {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.report-notes-input {
    padding: 0.2rem 0.5rem;
    border: 1px solid #d5dce2;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: inherit;
    width: 180px;
}

.report-notes-input:focus {
    outline: none;
    border-color: #3498db;
}

/* Public report form */
.report-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e8ed;
}

.report-link {
    font-size: 0.85rem;
    color: #95a5a6;
}

.report-link:hover {
    color: #636e72;
}

.report-inline-form {
    margin-top: 0.75rem;
}

.report-textarea {
    width: 100%;
    min-height: 60px;
    padding: 0.6rem 0.8rem;
    border: 1px solid #d5dce2;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 0.5rem;
}

.report-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.report-inline-form__actions {
    display: flex;
    gap: 0.5rem;
}
