/*
 Theme Name:   MSME Child
 Theme URI:    https://example.com/
 Description:  Child theme for Astra
 Author:       Your Name
 Author URI:   https://example.com/
 Template:     astra  
 Version:      1.0.0
*/

.dir-keywords {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;       /* makes them side by side */
  flex-wrap: wrap;     /* allows wrapping if too long */
  gap: 5px;            /* space between keywords */
}

.dir-keywords li {
  display: inline-block;
}

.dir-keywords li a {
    display: inline-block;
    padding: 4px 8px;
    background: #007d40;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
}

.dir-keywords li a:hover {
  background: #007D40BA;   /* darker on hover */
}
