/* Specific styles for the colors.html page */

#full-palette .container {
    max-width: 1400px;
}

.color-category-title {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.full-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.color-card-full {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    padding: 15px;
}

.color-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.swatch-full {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
    border: 1px solid rgba(0,0,0,0.1);
}

.info-full h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

.info-full span {
    font-size: 0.9rem;
    color: #777;
}
