﻿/* Touch Targets & Mobile Optimizations */
@media (max-width: 768px) {
    .btn-read-more {
        min-height: 40px;
        min-width: 140px;
    }

    .confidence-tag {
        min-height: 28px;
        display: inline-flex;
        align-items: center;
    }
}

/* Center Alignments */
@media (max-width: 576px) {
    .prediction-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .confidence-meter {
        margin: 0.5rem 0;
    }

    .prediction-footer {
        width: 100%;
        justify-content: space-between;
    }
}

/* Text Rendering */
.description-text * {
    max-width: 100%;
}

/* Fix for long words */
.description-text {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
