#pageDatiAggReg #keyword-container, 
#pageDatiAggReg #competitor-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#pageDatiAggReg input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

#pageDatiAggReg ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#pageDatiAggReg #keyword-container ul li,
#pageDatiAggReg #competitor-container ul li {
    display: inline-block;
    background-color: #e0e0e0;
    padding: 0.3rem 0.5rem;
    margin: 0.3rem 0.2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    position: relative;
}

#pageDatiAggReg #keyword-container ul li .remove-item,
#pageDatiAggReg #competitor-container ul li .remove-item {
    margin-left: 0.5rem;
    color: #ff0000;
    cursor: pointer;
    font-weight: bold;
}

.mx-err{
    color: red;
    font-size: 0.8rem;
    margin-left: 10px;
    display: flex;
    align-items: center;
    display: none;
}











#reportPage .table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

#reportPage .table th,
#reportPage .table td {
    padding: 10px;
    border: 1px solid #ddd;
}

#reportPage .table th {
    background-color: #f4f4f4;
}

#reportPage .table a {
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#reportPage .table a:hover {
    background-color: #0056b3;
}



















  
#pagePricing {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f9;
    color: #333;
}
  
#pagePricing header {
    text-align: center;
    background: #25003e; /* Nuovo colore principale */
    color: white;
    padding: 1.5em 0;
}
  
#pagePricing header h1 {
    margin: 0;
    font-size: 2.5em;
}
  
#pagePricing header p {
    font-size: 1.2em;
}
  
/* Sezione Prezzi */
#pagePricing .pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}
  
#pagePricing .plan {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}
  
#pagePricing .plan:hover {
    transform: translateY(-5px);
}
  
#pagePricing .plan h2 {
    font-size: 1.8em;
    margin: 0;
}
  
#pagePricing .plan .price {
    font-size: 2rem;
    color: #25003e; /* Nuovo colore principale */
    margin: 1em 0;
}
  
#pagePricing .plan ul {
    list-style: none;
    padding: 0;
    margin: 1em 0;
    text-align: left;
}
  
#pagePricing .plan ul li {
    margin-bottom: 0.8em;
}
  
#pagePricing .plan button {
    display: inline-block;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 5px;
    color: white;
    background: #25003e; /* Nuovo colore principale */
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}
  
#pagePricing .plan button:hover {
    background: #3f005c; /* Colore leggermente più chiaro per hover */
}
  
/* Evidenziare il piano popolare */
#pagePricing .plan.popular {
    border: 2px solid #25003e; /* Nuovo colore principale */
}

.btn-abbonati{
    background-color: #25003e!important;
    color: white!important;
}

.btn-abbonati:hover{
    background-color: #3f005c;
}

.mx-success{
    color: green;
    font-size: 0.8rem;
    margin-left: 10px;
    display: flex;
    align-items: center;
    display: none;
}