﻿/* tagcloud.css — Refined Blue & Orange Palette */

.tag-cloud {
    font-family: 'Trebuchet MS', Arial, sans-serif;
    padding: 1rem;
    text-align: center;
}

    .tag-cloud a {
        text-decoration: none;
        display: inline-block;
        transition: transform 0.2s, box-shadow 0.2s;
        margin: 0.25rem;
        padding: 6px 3px;
        border-radius: 4px;
        font-weight: 500;
    }

        .tag-cloud a:hover {
            transform: scale(1.1);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        }

/* Define background colors for each weight class */
.tag-weight-1, .tag-weight-6 {
    background-color: #D9EDF7; /* Pale Sky Blue */
    color: #000;
    font-size: 0.90em;
}

.tag-weight-2, .tag-weight-7 {
    background-color: #8ECAE6; /* Sky Blue */
    color: #000;
    font-size: 1.05em;
}

.tag-weight-3, .tag-weight-8 {
    background-color: #219EBC; /* Blue Green */
    color: #fff;
    font-size: 1.20em;
}

.tag-weight-4, .tag-weight-9 {
    background-color: #FFB703; /* Selective Yellow */
    color: #000;
    font-size: 1.35em;
}

.tag-weight-5, .tag-weight-10 {
    background-color: #FB8500; /* Orange */
    color: #000;
    font-size: 1.50em;
}
