/* Tools Section Styles */

/* Tool Cards */
.tool-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon {
    opacity: 0.7;
}

.tool-header {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
}

/* Home Page Tools Section */
.tools-section {
    padding: 4rem 0;
}

.tools-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tools-section .card:hover:not(.bg-primary) {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Tools Page Specific Styles */
.rhyme-helper {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    font-size: 0.9rem;
}

/* Tool Specific Styling */
.rhyme-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 4px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rhyme-item:hover {
    background-color: #e9ecef;
}

.rhyme-item.modifier-hover {
    background-color: #e9ecef;
}

.rhyme-item.modifier-hover i {
    color: #0d6efd;
}

.rhyme-item.copied {
    background-color: #d1e7dd;
    color: #0f5132;
} 