/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Common styles for all templates */
.tag-display-container {
    margin: 20px 0;
    clear: both;
}

.tag-display-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Default template styles */
.tag-display-default {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-display-default a {
    display: inline-block;
    background-color: #f1f1f1;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.tag-display-default a:hover {
    background-color: #0073aa;
    color: #fff;
}

/* Minimal template styles */
.tag-display-minimal {
    display: inline;
}

.tag-display-minimal a {
    color: #0073aa;
    text-decoration: none;
}

.tag-display-minimal a:hover {
    text-decoration: underline;
}

.tag-display-minimal .tag-separator {
    display: inline-block;
    margin: 0 5px;
    color: #666;
}

/* Tag cloud template styles */
.tag-display-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.tag-display-cloud a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #fff;
    color: #0073aa;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.tag-display-cloud a:hover {
    background-color: #0073aa;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .tag-display-default,
    .tag-display-cloud {
        justify-content: flex-start;
    }
    
    .tag-display-title {
        font-size: 14px;
    }
}
