/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.info-banner {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.info-icon {
    font-size: 1.2rem;
}

.info-text {
    color: #e0e0e0;
}

.info-text strong {
    color: #00d4ff;
}

.last-update {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.api-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.api-status-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.api-status-container.connected {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.1);
}

.api-status-container.error {
    border-color: rgba(255, 68, 68, 0.5);
    background: rgba(255, 68, 68, 0.1);
}

.control-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-tweets {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-tweets:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.btn-icon {
    font-size: 1rem;
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
    transform: translateY(-4px);
}

.card-primary {
    border-left: 4px solid #00d4ff;
}

.card-success {
    border-left: 4px solid #00ff88;
}

.card-info {
    border-left: 4px solid #ffa500;
}

.card-warning {
    border-left: 4px solid #ff6b6b;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.card-content h3 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.card-change {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-change.positive {
    color: #00ff88;
}

.card-change.negative {
    color: #ff4444;
}

.card-change.neutral {
    color: #888;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #666;
}

/* Section Styles */
section {
    margin: 3rem 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.title-icon {
    font-size: 1.5rem;
}

/* Signal Section */
.signal-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-info-container {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #888;
}

.signal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

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

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

.signal-header h3 {
    flex: 1;
    color: #e0e0e0;
    font-size: 1.2rem;
}

.signal-strength {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.signal-strength.success {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.signal-strength.danger {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.signal-strength.warning {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.signal-body p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.signal-metrics .metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-metrics .metric-label {
    color: #888;
    font-size: 0.9rem;
}

.signal-metrics .metric-value {
    color: #00d4ff;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-success {
    color: #00ff88;
}

.stat-danger {
    color: #ff4444;
}

.stat-up {
    color: #00ff88;
}

.stat-down {
    color: #ff4444;
}

.stat-info {
    color: #00d4ff;
}

.stat-primary {
    color: #ffa500;
}

/* Current Analysis Section */
.current-analysis {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.analysis-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.current-price-card,
.prediction-card,
.analysis-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-header,
.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-header h3,
.prediction-header h3 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin: 0;
}

.price-timestamp,
.prediction-confidence {
    font-size: 0.8rem;
    color: #888;
}

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

.current-price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 0.5rem;
}

.prediction-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
    margin-bottom: 0.5rem;
}

.price-change,
.prediction-direction {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.price-change.positive,
.prediction-direction.up {
    color: #00ff88;
}

.price-change.negative,
.prediction-direction.down {
    color: #ff4444;
}

.price-details,
.prediction-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-label {
    color: #888;
    font-size: 0.9rem;
}

.detail-value {
    color: #e0e0e0;
    font-weight: 600;
}

.analysis-summary h3 {
    color: #ffa500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.analysis-text {
    margin-bottom: 1.5rem;
}

.analysis-text p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.analysis-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.metric-label {
    color: #888;
    font-size: 0.9rem;
}

.metric-value {
    color: #00d4ff;
    font-weight: 600;
}


.chart-guide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.guide-item:last-child {
    margin-bottom: 0;
}

.guide-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.guide-text {
    color: #e0e0e0;
}

.guide-text strong {
    color: #00d4ff;
}

.chart {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    color: #888;
    gap: 1rem;
}

/* Predictions Section */
.predictions-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.predictions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.predictions-table th,
.predictions-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    vertical-align: middle;
}

/* Tweet kolonu (3. kolon) - soldan hizalı daha okunaklı */
.predictions-table td:nth-child(3) {
    text-align: left;
    max-width: 250px;
    word-wrap: break-word;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-bitcoin {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.badge-blockchain {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

/* Table Filters */
.table-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.table-filters label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.table-filters select {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.table-filters select:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination-info {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-number {
    min-width: 40px;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s;
    user-select: none;
}

.page-number:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.page-number.active {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-color: #00d4ff;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.page-number.ellipsis {
    cursor: default;
    pointer-events: none;
}

.page-number.ellipsis:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.pagination-size {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-size label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.pagination-size select {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.pagination-size select:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.predictions-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: #00d4ff;
    position: sticky;
    top: 0;
}

.predictions-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.loading-row {
    text-align: center;
    color: #888;
    font-style: italic;
}

.loading-row .loader {
    margin: 0 auto 0.5rem;
}

/* Market Summary */
.market-summary {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.summary-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Calculator Section */
.calculator-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-container {
    display: grid;
    gap: 2rem;
}

.calculator-info {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.info-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-emoji {
    font-size: 1.5rem;
}

.info-content strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

.calculator-inputs {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.input-group {
    flex: 1;
    min-width: 200px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e0e0e0;
}

.label-icon {
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.input-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #888;
}

.btn-calculate {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    height: fit-content;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 200px;
}

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    color: #888;
    text-align: center;
}

.placeholder-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.calculation-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-label {
    color: #888;
    font-size: 0.9rem;
}

.result-value {
    font-weight: 600;
    color: #e0e0e0;
}

.result-item.text-success .result-value {
    color: #00ff88;
}

.result-item.text-danger .result-value {
    color: #ff4444;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

footer p {
    margin-bottom: 0.5rem;
}

footer strong {
    color: #00d4ff;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Loader Styles */
.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-small {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-controls {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .pagination-info {
        order: 1;
        text-align: center;
    }
    
    .pagination-size {
        order: 3;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .page-number {
        min-width: 35px;
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .info-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .api-controls {
        flex-direction: column;
        align-items: center;
    }

    .summary-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .calculator-inputs {
        flex-direction: column;
    }

    .input-group {
        min-width: auto;
    }

    .chart {
        height: 400px;
    }

    .chart-status {
        height: 400px;
    }

    .predictions-table {
        font-size: 0.8rem;
    }

    .predictions-table th,
    .predictions-table td {
        padding: 0.75rem 0.5rem;
    }

    .analysis-container {
        grid-template-columns: 1fr;
    }

    .current-price-value {
        font-size: 2rem;
    }

    .prediction-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .card {
        padding: 1rem;
    }

    .card-value {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .chart {
        height: 300px;
    }

    .chart-status {
        height: 300px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.7);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-success { color: #00ff88; }
.text-danger { color: #ff4444; }
.text-warning { color: #ffa500; }
.text-info { color: #00d4ff; }
.text-muted { color: #888; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }