/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

/**
Simulator -> index.html.erb
 */
.simulator-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-top: 0;
    color: #333;
}

.section {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 6px;
}

.section h2 {
    margin-top: 0;
    font-size: 18px;
    color: #666;
}

/**
Simulator -> _timeline.html.erb
 */
.timeline {
    padding: 20px;
    text-align: center;
}

.timeline-placeholder {
    padding: 40px;
    background: #f0f0f0;
    border-radius: 6px;
    color: #999;
}

/**
Simulator -> _display.html.erb
 */
.display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.spm-display {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
}

.spm-display h3 {
    margin: 0 0 10px 0;
    font-size: 72px;
    font-weight: bold;
}

.spm-display p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}

.state-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.state-info p {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.state-info strong {
    color: #666;
}

.state-info span {
    color: #333;
}

.status-playing {
    color: #28a745;
}

.status-paused {
    color: #6c757d;
}

/**
Simulator -> _controls.html.erb
 */
.controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-group label {
    min-width: 100px;
    font-weight: 500;
}

select, button {
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

button {
    background: #007bff;
    color: white;
    border: none;
}

button:hover {
    background: #0056b3;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.seek-control {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seek-slider {
    width: 100%;
}

.seek-time {
    color: #666;
    font-size: 14px;
}

/**
 * Playlists Styles
 */
.playlists-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.playlist-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid #eee;
}

.playlist-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.playlist-card-header h3 {
    margin: 0;
    font-size: 18px;
}

.playlist-card-header h3 a {
    color: #333;
    text-decoration: none;
}

.playlist-card-header h3 a:hover {
    color: #667eea;
}

.playlist-card-body {
    color: #666;
    margin-bottom: 15px;
}

.playlist-card-body p {
    margin: 5px 0;
}

.playlist-card-actions {
    display: flex;
    gap: 10px;
}

.tempo-badge, .genre-badge, .playlist-badge, .storefront-badge, .source-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.playlist-badge .playlist-valid {
    background: #d4edda;
    color: #155724;
}

.playlist-badge .playlist-invalid {
    background: #f8d7da;
    color: #721c24;
}

.tempo-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.genre-badge {
    background: #e0e0e0;
    color: #333;
}

.storefront-badge {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.source-badge {
    background: #f0e6ff;
    color: #5a3d8a;
}

.source-badge a {
    color: #5a3d8a;
    text-decoration: underline;
}

.playlist-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-row {
    display: grid;
    grid-template-columns: 40px 30px 1fr 80px auto;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
}

.available-tracks .track-row {
    grid-template-columns: 1fr 80px auto;
}

.track-position {
    font-weight: 500;
    color: #999;
    text-align: center;
}

.track-status {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.status-valid {
    background: #d4edda;
    color: #155724;
}

.status-invalid {
    background: #f8d7da;
    color: #721c24;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.track-name {
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-tempo {
    font-size: 13px;
    color: #666;
    text-align: right;
}

.track-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.track-count {
    font-size: 14px;
    color: #999;
}

.status-legend {
    display: flex;
    gap: 20px;
}

.status-legend span {
    white-space: nowrap;
}

.search-form {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 15px;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.help-text {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
    background: #f0f0f0;
    border-radius: 6px;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #007bff;
    color: white;
}

.btn:hover {
    background: #0056b3;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4393 100%);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-success {
    background: #28a745;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-preview {
    background: #17a2b8;
    min-width: 32px;
}

.btn-preview:hover {
    background: #138496;
}

.btn-small {
    padding: 4px 10px;
    font-size: 12px;
}

.btn-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.storefront-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.playlist-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.form-errors {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.form-errors h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #c33;
}

.form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.form-errors li {
    color: #c33;
    font-size: 13px;
}

.playlist-content {
    display: flex;
    flex-direction: column;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

/**
 * Validation Results
 */
.validation-results {
    margin-bottom: 20px;
}

.validation-summary {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.validation-valid {
    background: #d4edda;
    color: #155724;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
}

.validation-invalid {
    background: #f8d7da;
    color: #721c24;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
}

.validation-section {
    margin-top: 15px;
}

.validation-heading-valid {
    color: #155724;
    font-size: 16px;
    margin-bottom: 10px;
}

.validation-heading-invalid {
    color: #721c24;
    font-size: 16px;
    margin-bottom: 10px;
}

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

.validation-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.validation-item-valid {
    background: #d4edda;
}

.validation-item-invalid {
    background: #f8d7da;
}

.validation-item .track-name {
    font-weight: 500;
}

.validation-item .track-artist {
    color: #666;
    font-size: 13px;
}

/**
 * Coverage Matrix
 */
.coverage-matrix {
    overflow-x: auto;
}

.coverage-matrix table {
    border-collapse: collapse;
    font-size: 12px;
    width: 100%;
}

.coverage-matrix th,
.coverage-matrix td {
    border: 1px solid #ddd;
    padding: 4px 8px;
    text-align: center;
}

.coverage-matrix th {
    background: #f5f5f5;
    font-weight: 500;
}

.coverage-matrix .genre-label {
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
}

.coverage-cell {
    font-weight: bold;
    min-width: 24px;
}

.coverage-empty {
    background: #f8d7da;
    color: #721c24;
    padding: 2px 6px;
}

.coverage-partial {
    background: #fff3cd;
    color: #856404;
    padding: 2px 6px;
}

.coverage-complete {
    background: #d4edda;
    color: #155724;
    padding: 2px 6px;
}

/**
 * Exercises Styles
 */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr:hover {
    background: #f5f5f5;
}

.data-table td a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.data-table td a.btn {
    color: white;
}

.data-table td a:hover {
    text-decoration: underline;
}

.summary-list {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px 20px;
    margin: 0;
}

.summary-list dt {
    font-weight: 500;
    color: #666;
}

.summary-list dd {
    margin: 0;
    color: #333;
}

.session-id {
    font-family: monospace;
    font-size: 13px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
}

.exercise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.stat-card.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card.primary .stat-value,
.stat-card.primary .stat-label {
    color: white;
}

.rating-stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.feedback-comment {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #667eea;
    font-style: italic;
    color: #555;
}

.cadence-chart {
    height: 200px;
    background: #f9f9f9;
    border-radius: 6px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    gap: 2px;
    overflow-x: auto;
}

.cadence-bar {
    flex: 1;
    min-width: 4px;
    max-width: 20px;
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 2px 2px 0 0;
    transition: opacity 0.2s;
}

.cadence-bar:hover {
    opacity: 0.8;
}

.event-marker {
    flex: 1;
    min-width: 4px;
    max-width: 20px;
    background: #dc3545;
    border-radius: 2px 2px 0 0;
    opacity: 0.8;
    transition: opacity 0.2s;
    cursor: default;
}

.event-marker:hover {
    opacity: 1;
}

.event-row {
    background: #fffdf0;
}

.event-type-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #fff3cd;
    color: #856404;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.event-detail {
    display: inline-block;
    margin-right: 12px;
    font-size: 13px;
    color: #555;
}

.event-detail small {
    color: #999;
    margin-right: 4px;
}

/**
 * Landing Page
 */
.landing-page {
    max-width: none;
    margin: 0;
    padding: 0;
    background: #0d0d1a;
    color: #fff;
    min-height: 100vh;
}

body:has(.landing-page) {
    max-width: none;
    padding: 0;
    margin: 0;
    background: #0d0d1a;
}

.landing-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80dvh;
    text-align: center;
    background: radial-gradient(ellipse at 50% 40%, rgba(118, 75, 162, 0.3) 0%, rgba(13, 13, 26, 0) 70%);
    padding: 60px 24px;
    margin-bottom: -60px;
}

.landing-hero-content {
    max-width: 550px;
    width: 100%;
}

.landing-logo {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(118, 75, 162, 0.4);
    margin-bottom: 32px;
}

.landing-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #e84393 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.landing-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
    font-weight: 400;
}

.landing-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 40px 0;
}

.landing-cta {
    display: inline-block;
}

.landing-app-store-badge {
    height: 54px;
    max-width: 100%;
    transition: opacity 0.2s;
}

.landing-cta:hover .landing-app-store-badge {
    opacity: 0.85;
}

#waitlist-form {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    max-width: 550px;
    margin: 0 auto 40px;
}

.waitlist-cta {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    line-height: 1.6;
    text-box-trim: trim-end;
}

.waitlist-form {
    margin: 0;
}

.waitlist-input-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.waitlist-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
    outline: none;
    min-width: 0;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.waitlist-input:focus {
    border-color: #764ba2;
    /*background: rgba(255, 255, 255, 0.10);*/
}

.waitlist-btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 0 8px 8px 0;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3411ef 0%, #8125df 100%);
    color: white;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.waitlist-btn:hover {
    opacity: 0.75;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3411ef 0%, #8125df 100%);
}

.waitlist-success p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding: 14px 0;
}

.landing-disclaimer {
    margin: 40px 0 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.landing-features {
    padding: 0 20px 80px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.landing-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: clamp(20px, 4vw, 32px);
    transition: background 0.2s;
}

.landing-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.landing-feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.landing-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.landing-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.landing-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.landing-footer p {
    margin: 0 0 12px 0;
}

.landing-footer p:last-child {
    margin-bottom: 0;
}

.landing-footer a {
    color: rgba(255, 255, 255, 0.4);
    /*text-decoration: none;*/
    transition: color 0.2s;
}

.landing-footer a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/**
 * Privacy Page
 */
.privacy-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

.privacy-back {
    margin: 0 0 32px 0;
}

.privacy-back a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.privacy-back a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.privacy-page h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.privacy-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 40px 0;
}

.privacy-page h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 16px 0;
    color: #fff;
}

.privacy-page h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 24px 0 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-page p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
}

.privacy-page ul {
    padding-left: 20px;
    margin: 0 0 16px 0;
}

.privacy-page li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.privacy-page a {
    color: #667eea;
    text-decoration: none;
}

.privacy-page a:hover {
    color: #8a9ff5;
}

/* Tablet */
@media (max-width: 768px) {
    .landing-hero {
        padding: 48px 24px;
        margin-bottom: -50px;
    }

    .landing-title {
        font-size: 44px;
    }

    .landing-subtitle {
        font-size: 19px;
    }

    .landing-description {
        font-size: 16px;
    }

    .landing-logo {
        width: 120px;
        height: 120px;
        border-radius: 24px;
    }

    .landing-features {
        padding: 0 24px 60px;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .waitlist-input {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
        border-radius: 8px 8px 0 0;
    }

    .waitlist-btn {
        border-radius: 0 0 8px 8px;
    }
}

/* Small phones (iPhone SE = 375px) */
@media (max-width: 480px) {
    #waitlist-form {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .waitlist-cta {
        font-size: 15px;
    }

    .landing-hero {
        padding: 40px 28px;
        margin-bottom: -40px;
    }

    .landing-title {
        font-size: 32px;
    }

    .landing-subtitle {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .landing-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .landing-logo {
        width: 88px;
        height: 88px;
        border-radius: 20px;
        margin-bottom: 20px;
        box-shadow: 0 6px 28px rgba(118, 75, 162, 0.35);
    }

    .landing-app-store-badge {
        height: 42px;
    }

    .landing-disclaimer {
        margin-top: 24px;
        font-size: 12px;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landing-features {
        padding: 0 28px 48px;
    }

    .landing-feature-icon {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .landing-feature-card h3 {
        font-size: 15px;
    }

    .landing-feature-card p {
        font-size: 13px;
    }

    .landing-footer {
        padding: 28px 20px;
    }
}

/* Very small screens */
@media (max-width: 340px) {
    .landing-hero {
        padding: 32px 24px;
        margin-bottom: -35px;
    }

    .landing-title {
        font-size: 28px;
    }

    .landing-subtitle {
        font-size: 15px;
    }

    .landing-logo {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }
}

/**
QR Codes -> show.html.erb
 */
.qr-code-display {
    display: flex;
    justify-content: center;
    padding: 30px;
    background: white;
    border-radius: 6px;
    border: 1px solid #eee;
}

.qr-code-display svg {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
}

.qr-code-display--small {
    padding: 16px;
}

.qr-code-display--small svg {
    max-width: 200px;
    max-height: 200px;
}

.form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.form-row .form-group {
    flex: 1;
}

.color-swatch-preview {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.color-swatch-preview.transparent-bg {
    background-image:
        linear-gradient(45deg, #ccc 25%, transparent 25%),
        linear-gradient(-45deg, #ccc 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ccc 75%),
        linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 10px 10px;
    background-position: 0 0, 0 5px, 5px -5px, -5px 0;
}