/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Dec 1, 2025, 1:54:31 PM
    Author     : munsking
*/

:root{
    
  --bs-primary-rgb: 7,56,66;
  --bs-secondary-rgb: 88,110,117;
}

ul.taglist{
    padding:0;
    color: rgba(var(--bs-secondary-rgb), 0.8);
    font-weight: bold;
    li{
        list-style: none;
        display:inline;
        border: 2px solid rgba(var(--bs-secondary-rgb), 0.8);
        border-radius: 5px;
        padding: 1px 5px;
        line-height:0.8em;
        font-size: 0.8em;
    }
    li:hover{
        color: rgba(var(--bs-primary-rgb), 1);
        border: 2px solid rgba(var(--bs-primary-rgb), 1);
    }
}