/**
 * ENHANCED TABS STYLING
 * Symbols and Biblical tabs complete styling
 */

/* ===========================
   ENHANCED SYMBOLS TAB
   =========================== */

.enhanced-symbols-tab {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Header */
.symbols-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.symbols-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Controls */
.symbols-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
}

.view-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.view-btn.active svg {
    stroke: white;
}

.view-btn:hover:not(.active) {
    background: var(--glass-border);
}

.symbols-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.form-select {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:hover {
    border-color: var(--primary-color);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

/* Category Filters */
.category-filter-section {
    margin-top: 1rem;
}

.filter-tabs-scrollable {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-tabs-scrollable::-webkit-scrollbar {
    height: 6px;
}

.filter-tabs-scrollable::-webkit-scrollbar-track {
    background: var(--glass-bg);
    border-radius: 3px;
}

.filter-tabs-scrollable::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Advanced Filters */
.advanced-filters {
    margin-top: 1rem;
}

.advanced-filters-content {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* Symbols Display */
.symbols-display {
    min-height: 400px;
}

.symbols-display.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Grid View Cards */
.symbol-card-grid {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.symbol-card-grid:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.symbol-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.symbol-select {
    margin-top: 0.25rem;
    cursor: pointer;
}

.symbol-name {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.symbol-category-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.symbol-subcategory {
    padding: 0.25rem 0.75rem;
    background: var(--glass-border);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.symbol-meaning-preview {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.symbol-scripture-preview {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    padding: 0.75rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.symbol-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

/* List View */
.symbols-list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.symbol-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.symbol-row:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.symbol-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.symbol-row-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.symbol-meaning {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.symbol-scripture-small {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

/* Detailed View */
.symbol-card-detailed {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.symbol-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--glass-border);
}

.symbol-detailed-header > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.symbol-detailed-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.symbol-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.symbol-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.scripture-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scripture-list li {
    padding: 0.75rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

/* Symbol Detail Modal */
.symbol-detail-full {
    max-width: 900px;
    margin: 0 auto;
}

.symbol-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--glass-border);
}

.symbol-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.symbol-detail-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.symbol-detail-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-section {
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.detail-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.context-positive,
.context-negative {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid;
}

.context-positive {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.context-positive h4 {
    color: rgb(34, 197, 94);
    margin-bottom: 0.75rem;
}

.context-negative {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
}

.context-negative h4 {
    color: rgb(239, 68, 68);
    margin-bottom: 0.75rem;
}

.linguistic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.linguistic-item {
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.linguistic-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.related-symbols-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.related-symbol-btn {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-symbol-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.dream-scenarios-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dream-scenarios-list li {
    padding: 1rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.historical-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.historical-example {
    padding: 1.25rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.historical-example strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.warning-section {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.warning-section .detail-section-title {
    color: rgb(239, 68, 68);
}

.warning-content {
    color: rgb(239, 68, 68);
    font-weight: 500;
}

/* Comparison Panel */
.comparison-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--glass-border);
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

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

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.comparison-column {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* ===========================
   ENHANCED BIBLICAL TAB
   =========================== */

.enhanced-biblical-tab {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Header */
.biblical-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.biblical-stats {
    display: flex;
    gap: 2rem;
}

/* Navigation Tabs */
.biblical-nav-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.biblical-nav-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.biblical-nav-tab svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-secondary);
}

.biblical-nav-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
}

.biblical-nav-tab.active svg {
    stroke: white;
}

.biblical-nav-tab:hover:not(.active) {
    border-color: var(--primary-color);
}

/* Controls */
.biblical-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Dreams Display */
.biblical-dreams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Dream Cards */
.biblical-dream-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.biblical-dream-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.dream-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.dream-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.testament-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.testament-badge.ot {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
}

.testament-badge.nt {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: white;
}

.dream-card-reference {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.dream-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dream-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.dream-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.dream-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

/* Timeline View */
.biblical-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item.left {
    justify-content: flex-end;
    padding-right: calc(50% + 3rem);
}

.timeline-item.right {
    justify-content: flex-start;
    padding-left: calc(50% + 3rem);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--bg-primary), 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.timeline-number {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 450px;
    backdrop-filter: blur(10px);
}

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

.timeline-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-reference {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.timeline-summary {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Table View */
.biblical-table-wrapper {
    overflow-x: auto;
}

.biblical-dreams-table {
    width: 100%;
    border-collapse: collapse;
}

.biblical-dreams-table thead {
    background: var(--glass-bg);
}

.biblical-dreams-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--glass-border);
}

.biblical-dreams-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.biblical-dreams-table tbody tr {
    transition: all 0.3s ease;
}

.biblical-dreams-table tbody tr:hover {
    background: var(--glass-bg);
}

/* Methods Section */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.method-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-icon {
    font-size: 2rem;
}

.method-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.method-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-steps {
    margin: 0.75rem 0 1rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.method-scripture {
    padding: 1rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Principles Section */
.principles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.principle-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.principle-content {
    flex: 1;
}

.principle-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.principle-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.principle-scripture {
    padding: 0.75rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.principle-warning {
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid rgb(239, 68, 68);
    border-radius: 4px;
    font-size: 0.9rem;
    color: rgb(239, 68, 68);
}

/* Dream Types Section */
.dream-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dream-type-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dream-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.type-icon {
    font-size: 2.5rem;
}

.type-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.type-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.type-characteristics,
.type-examples {
    margin-bottom: 1rem;
}

.type-characteristics h4,
.type-examples h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.type-characteristics ul,
.type-examples ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .symbols-header,
    .biblical-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .symbols-stats,
    .biblical-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .symbols-display.grid-view,
    .biblical-dreams-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        padding: 0 0 0 3rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .methods-grid,
    .dream-types-grid {
        grid-template-columns: 1fr;
    }
}
