/* styles.css */
h1 {
  color: #333;
  margin-bottom: 10px;
}

input,
select {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.aniadir-web input {
  width: 70%;
}

.aniadir-web select {
  width: 30%;
}

button {
  padding: 8px 12px;
  background-color: #5f4079;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

button:hover {
  background-color: #412C53;
}

a {
  text-decoration: none;
}

.btn-recargar {
  right: 16% !important;
}

.btn-eliminar {
  right: 8px;
}

.btn-agregar {
  width: 100%;
}

.btn-eliminar:hover {
  background-color: #e24343;
}

.btn-recargar:hover {
  background-color: #d99e46;
}

.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: auto;
  text-align: center;
  display: flex;
  gap: 1em;
}

#contenedorWebs {
  width: 100%;
}

.web-list {
  text-align: left;
}

.web-item {
  background-color: #f9f9f9;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  position: relative;
}

.web-item button {
  background-color: #424242;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.8em;
  position: absolute;
  top: 8px;
  cursor: pointer;
}

.btn-filtro {
  background-color: #424242;
}

.btn-filtro:hover {
  background-color: #5f4079;
}

.aniadir-web {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1em;
}
.container-footer{
  display: flex;
  width: 100%;
  background-color: #412C53;
  justify-content: center;
}
.container-footer h3{
  color: #f4f4f9;
  font-size: 1.5em;
  font-weight: 600;
}

.grupo-cliente ul li a{
    color: #412C53;
}

.grupo-cliente ul li a:hover{
    color: #412C53;
}



/* webs statusF */
.web-item {
  margin: 10px 0;
}

.activa {
  color: green;
}

.error {
  color: red;
}

.aviso {
  color: orange;
}

.oculta {
  display: none;
}

/* Plugins */

details {
  margin-top: 10px;
}

summary {
  font-weight: bold;
  cursor: pointer;
  color: #412C53;
}

summary:hover {
  text-decoration: underline;
}

ul {
  padding-left: 20px;
}