/* Lab Page Styles */

/* Tool Cards */
.tool-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    /* border: none; Removed to allow style.css border */
    /* background-color: transparent; Removed to allow style.css var(--bg-card) */
}

/* Let style.css handle hover */

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent); /* Use accent color */
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.tool-title {
    font-weight: 600; /* Match style.css headers */
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.tool-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Coming Soon Overlay */
.coming-soon {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    border: 1px solid var(--accent);
}
