/**handles:fato-styles**/
/**
 * Domyślne style dla wtyczki "fajne | auto tagi i osoby"
 */

/* Style dla hashtagów */
.tag-znacznik {
    display: inline-block;
    background: #e7f3ff;
    color: #0073aa;
    padding: 2px 6px;
    margin: 0 2px;
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 115, 170, 0.3);
    position: relative;
}

.tag-znacznik:hover {
    background: #d1e7ff;
    color: #005a87;
    text-decoration: none;
    border-bottom-color: rgba(0, 115, 170, 0.6);
}

/* Style dla osób/miejsc */
.tag-osoba {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 2px 6px;
    margin: 0 2px;
    border-radius: 3px;
    font-style: italic;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(133, 100, 4, 0.3);
    position: relative;
}

.tag-osoba:hover {
    background: #ffeaa7;
    color: #6c5ce7;
    text-decoration: none;
    border-bottom-color: rgba(133, 100, 4, 0.6);
}

/* Style dla meta boxa w panelu admin */
.fato-meta-box .fato-info {
    margin-top: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 3px solid #0073aa;
    border-radius: 3px;
}

.fato-meta-box .fato-current-tags {
    margin-top: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 3px solid #46b450;
    border-radius: 3px;
}

.fato-person-tag {
    background: #e7f3ff !important;
    color: #0073aa !important;
    border: 1px solid #b3d9ff;
}

.fato-regular-tag {
    background: #f0f0f0 !important;
    color: #333 !important;
    border: 1px solid #ddd;
}

/* Responsywność */
@media (max-width: 768px) {
    .tag-znacznik,
    .tag-osoba {
        font-size: 0.85em;
        padding: 1px 4px;
    }
}

/* Animacje */
@keyframes fato-fade-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag-znacznik,
.tag-osoba {
    animation: fato-fade-in 0.3s ease-out;
}