/* ===================================
   LOCATION PROMPT BANNER
   =================================== */

.location-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-out;
}

.location-prompt.hidden {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.location-prompt-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-prompt-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.location-prompt-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.location-prompt-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.location-prompt-btn {
    padding: 8px 20px;
    background-color: white;
    color: #FF6B35;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.location-prompt-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.location-prompt-btn:active {
    transform: scale(0.98);
}

.location-prompt-dismiss {
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-prompt-dismiss:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Adjust view containers when banner is visible */
body.has-location-prompt .view-container {
    top: 56px; /* Height of banner */
}

body.has-location-prompt #map {
    height: calc(100vh - 60px - 56px) !important; /* Account for both nav and banner */
}

/* ===================================
   BOTTOM TAB NAVIGATION
   Strava-style mobile navigation
   =================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: white;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.nav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    color: #666;
    text-decoration: none;
}

.nav-tab:hover {
    background-color: #f8f8f8;
}

.nav-tab.active {
    color: #FF6B35;
}

.nav-tab-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.nav-tab-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: capitalize;
}

/* ===================================
   VIEW CONTAINERS
   =================================== */

.view-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px; /* Space for bottom nav */
    overflow: auto;
}

.view-container.active {
    display: block;
}

/* Map view - no changes, just ensure it respects bottom nav */
#map-view {
    position: relative;
}

#map-view #map {
    height: calc(100vh - 60px); /* Account for bottom nav */
}

/* ===================================
   FAVORITES VIEW
   =================================== */

#favorites-view {
    background-color: #f5f5f5;
    padding-bottom: 20px;
}

.favorites-header {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 10;
}

.favorites-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.favorites-count {
    color: #666;
    font-size: 14px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.list-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    align-items: center;
}

.total-carbon-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.total-carbon-badge.carbon-low {
    background: #4caf50;
    color: white;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.total-carbon-badge.carbon-medium {
    background: #ff9800;
    color: white;
    box-shadow: 0 2px 4px rgba(255, 152, 0, 0.3);
}

.total-carbon-badge.carbon-high {
    background: #f44336;
    color: white;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.3);
}

/* Status filter container and label */
.status-filters-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-filters-label {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Status filter pills */
.status-filters {
    display: flex;
    gap: 8px;
    margin: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex: 1;
}

.status-filters::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.status-filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-filter-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

/* Multi-select indicator: show count of active filters on 'All' button when inactive */
.status-filter-btn[data-status="all"]:not(.active) {
    position: relative;
}

.status-filter-btn:hover:not(.active) {
    border-color: #667eea;
    background: #f0f4ff;
}

.filter-count {
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

.status-filter-btn.active .filter-count {
    background: rgba(255,255,255,0.25);
}

.favorites-list {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-bottom: 20px;
}

/* Favorite items now use race-card classes for consistency */

.favorites-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.favorites-empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.favorites-empty-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.favorites-empty-text {
    font-size: 15px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.favorites-empty-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.empty-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.empty-step:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.empty-step-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.empty-step-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.empty-step-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.favorites-empty-hint {
    font-size: 13px;
    color: var(--text-tertiary);
    padding: 12px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

/* My Races Notification */
.my-races-notification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.notification-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.notification-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.notification-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.notification-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===================================
   LIST VIEW
   =================================== */

#list-view {
    background-color: #f5f5f5;
}

.list-header {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 10;
}

.list-header h2 {
    margin: 0 0 12px 0;
    font-size: 24px;
    color: #333;
}

.list-search-container {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-filter-toggle {
    white-space: nowrap;
}

.search-filter-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #667eea;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    font-size: 16px;
    pointer-events: none;
    opacity: 0.5;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.search-input:focus {
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-clear {
    position: absolute;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-clear:hover {
    background: #d0d0d0;
    color: #333;
}

.list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.list-count {
    color: #666;
}

.list-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Unified sort button styles - used in both List and My Races views */
.sort-btn,
.favorites-sort-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
}

.sort-btn.active,
.favorites-sort-btn.active {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

.sort-btn:hover,
.favorites-sort-btn:hover {
    border-color: #667eea;
}

.race-list {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-bottom: 20px;
}

.race-card {
    background-color: white;
    margin: 4px 8px;
    padding: 10px 12px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: box-shadow 0.2s;
    border-left: 3px solid transparent;
}

.race-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    border-left-color: #FF6B35;
}

.race-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.race-card-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    flex: 1;
    line-height: 1.3;
}

.race-card-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.race-card-map-btn {
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    user-select: none;
    background: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border-radius: 4px;
    line-height: 1;
}

.race-card-map-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.race-card-map-btn:active {
    transform: scale(0.95);
    background: rgba(0, 0, 0, 0.15);
}

/* Star (favorite) button */
.race-status-star {
    font-size: 20px;
    cursor: pointer;
    padding: 2px 6px;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    user-select: none;
    background: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border-radius: 4px;
    flex-shrink: 0;
    opacity: 0.5;
}

.race-status-star.active {
    opacity: 1;
    color: #FFD700; /* Gold */
}

.race-status-star:hover {
    transform: scale(1.15);
    background: rgba(255, 215, 0, 0.1);
    opacity: 1;
}

/* Planned checkbox with calendar icon */
.race-status-planned-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    user-select: none;
}

.race-status-planned-wrapper:hover {
    background: rgba(102, 126, 234, 0.1);
}

.race-status-planned-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea; /* Purple */
    margin: 0;
    flex-shrink: 0;
}

.race-status-planned-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.race-status-planned-icon {
    font-size: 16px;
    pointer-events: none;
    line-height: 1;
}

/* Registered button */
.race-status-registered {
    font-size: 18px;
    cursor: pointer;
    padding: 2px 6px;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    user-select: none;
    background: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border-radius: 4px;
    flex-shrink: 0;
    opacity: 0.3;
}

.race-status-registered.active {
    opacity: 1;
    color: #48bb78; /* Green */
}

.race-status-registered:hover:not(:disabled) {
    transform: scale(1.15);
    background: rgba(72, 187, 120, 0.1);
    opacity: 1;
}

.race-status-registered:disabled {
    cursor: not-allowed;
    opacity: 0.2;
}

/* Delete button with red X */
.race-card-delete-btn {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 4px 6px;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    user-select: none;
    background: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    border-radius: 4px;
    flex-shrink: 0;
    color: #dc3545; /* Red */
    opacity: 0.7;
}

.race-card-delete-btn:hover {
    transform: scale(1.1);
    background: rgba(220, 53, 69, 0.15);
    opacity: 1;
}

/* List view favorite button (cycling status) */
.race-card-favorite {
    font-size: 20px;
    cursor: pointer;
    padding: 2px 6px;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    user-select: none;
    background: none;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border-radius: 4px;
    flex-shrink: 0;
    opacity: 0.5;
}

.race-card-favorite.status-favorite,
.race-card-favorite.status-planned,
.race-card-favorite.status-registered {
    opacity: 1;
}

.race-card-favorite:hover {
    transform: scale(1.15);
    background: rgba(255, 215, 0, 0.1);
    opacity: 1;
}

.race-card-favorite:active {
    transform: scale(0.95);
    background: rgba(255, 215, 0, 0.15);
}

/* Ensure emoji text inside button doesn't intercept clicks */
.race-card-favorite *,
.race-card-map-btn *,
.race-card-status-btn *,
.race-card-delete-btn *,
.race-status-star *,
.race-status-registered *,
.race-status-planned-icon {
    pointer-events: none;
}

.race-card-details {
    display: flex;
    gap: 10px;
    color: #666;
    font-size: 11px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.race-card-detail {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.race-card-footer {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.race-card-link {
    color: #667eea;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.race-card-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

.race-card-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
}

.badge-carbon {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.badge-carbon.medium {
    background-color: #fff3e0;
    color: #e65100;
}

.badge-carbon.high {
    background-color: #ffebee;
    color: #c62828;
}

.badge-difficulty {
    background-color: #e3f2fd;
    color: #1565c0;
    font-weight: 600;
}

/* Difficulty level colors */
.difficulty-xxs {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.difficulty-xs {
    background-color: #e8f5e9;
    color: #388e3c;
}

.difficulty-s {
    background-color: #fff3e0;
    color: #f57c00;
}

.difficulty-m {
    background-color: #fff3e0;
    color: #e65100;
}

.difficulty-l {
    background-color: #ffebee;
    color: #d32f2f;
}

.difficulty-xl {
    background-color: #ffebee;
    color: #c62828;
}

.difficulty-xxl {
    background-color: #f3e5f5;
    color: #6a1b9a;
}

/* Source badges */
.badge-source {
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    align-self: center;
}

.list-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.list-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.list-empty-text {
    font-size: 16px;
    margin-bottom: 8px;
}

.list-empty-hint {
    font-size: 14px;
    color: #bbb;
}

/* ===================================
   CHATBOT VIEW
   =================================== */

#chatbot-view {
    background-color: #f5f5f5;
}

#chatbot-view.active {
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.chatbot-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.chatbot-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.chatbot-welcome {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.chatbot-welcome-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.chatbot-welcome-text {
    font-size: 16px;
    margin-bottom: 24px;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.quick-action-btn {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #333;
}

.quick-action-btn:hover {
    background-color: #f8f8f8;
    border-color: #FF6B35;
}

.quick-action-btn:active {
    transform: scale(0.98);
}

/* ===================================
   SETTINGS VIEW
   =================================== */

#settings-view {
    background-color: #f5f5f5;
}

.settings-header {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.settings-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.settings-content {
    padding: 20px;
}

.settings-section {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.settings-section-title {
    padding: 16px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.settings-item {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item-label {
    font-size: 15px;
    color: #333;
}

.settings-item-value {
    font-size: 14px;
    color: #999;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 767px) {
    .my-races-notification {
        margin: 12px;
        padding: 16px;
    }
    
    .notification-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .notification-icon {
        font-size: 28px;
    }
    
    .notification-text strong {
        font-size: 15px;
    }
    
    .notification-text p {
        font-size: 13px;
    }
    
    .notification-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (min-width: 768px) {
    .bottom-nav {
        height: 70px;
    }
    
    
    .nav-tab-icon {
        font-size: 28px;
    }
    
    .nav-tab-label {
        font-size: 12px;
    }
    
    .view-container {
        bottom: 70px;
    }
    
    #map-view #map {
        height: calc(100vh - 70px);
    }
    
    .quick-actions {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================
   RACE STATUS INDICATORS
   =================================== */

.race-status-indicator {
    display: inline-block;
    margin-right: 6px;
    font-size: 16px;
}

/* Status-specific styling for buttons */
.status-favorite {
    color: #FFD700; /* Gold for favorite */
}

.status-planned {
    color: #667eea; /* Purple for planned */
}

.status-registered {
    color: #48bb78; /* Green for registered */
}

/* Planned carbon badge styling */
.planned-carbon-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

.planned-carbon-badge.carbon-low {
    background: #d4edda;
    color: #155724;
}

.planned-carbon-badge.carbon-medium {
    background: #fff3cd;
    color: #856404;
}

.planned-carbon-badge.carbon-high {
    background: #f8d7da;
    color: #721c24;
}

