/* Tech Stack List with Tags */
.tech-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Style all tech-stack list items with the project-tag style */
.tech-stack-list li {
    display: inline-block;
    font-size: 0.7rem;
    padding: 3px 8px;
    background-color: rgba(53, 99, 233, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    margin: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.tech-stack-list li:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hide modal tags div */
.modal-tags {
    display: none;
} 