Files
front-Censo/src/components/reporteGraficas/Reporte.module.css
T
2026-03-12 18:45:04 -05:00

76 lines
1.0 KiB
CSS

.container{
width: 100%;
margin: 0 auto;
padding:20px;
background:white;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
}
.title{
font-size:18px;
margin-bottom:15px;
}
.label{
font-size:13px;
color:#444;
}
.listaContainer{
margin-top:20px;
}
.subtitle{
font-size:14px;
margin-bottom:10px;
}
.empty{
font-size:13px;
color:#777;
}
.lista{
display:flex;
flex-wrap:wrap;
gap:8px;
}
.chip{
display:flex;
align-items:center;
background:#f1f3f5;
border-radius:20px;
padding:5px 10px;
font-size:13px;
}
.remove{
border:none;
background:none;
margin-left:6px;
cursor:pointer;
color:#777;
}
.remove:hover{
color:#c0392b;
}
.button{
margin-top:20px;
padding:8px 14px;
border:none;
border-radius:6px;
background:#2563eb;
color:white;
font-size:13px;
cursor:pointer;
}
.button:hover{
background:#1d4ed8;
}