
  .rosa-dei-venti {
    position: relative;
    width: 150px;
    height: 150px;
    font-size: 12px;
    border: 2px dotted #e5e5e5;
    border-radius: 50%;
    margin-left: 20%;
    /* immagine di sfondo     */
    background-image: url("/static/app/certheme/images/rose_winds_2.34c3d7b3b35e.svg");
    background-size: 76%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .point {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #f4f4f492;
    border: 1px solid #333;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .point:hover {
    background-color: #ddd;
    /* transform: scale(1.1); */
  }

  .point.active {
    background-color: #0099ff;
    color: white;
  }

  /* Posizionamento dei punti */
  .north { top: 0; left: 50%; transform: translate(-50%, -50%); }
  .south { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
  .east { top: 50%; right: 0; transform: translate(50%, -50%); }
  .west { top: 50%; left: 0; transform: translate(-50%, -50%); }
  .northeast { top: 15%; right: 15%; transform: translate(50%, -50%); }
  .southeast { bottom: 15%; right: 15%; transform: translate(50%, 50%); }
  .southwest { bottom: 15%; left: 15%; transform: translate(-50%, 50%); }
  .northwest { top: 15%; left: 15%; transform: translate(-50%, -50%); }

  .carpet-plot-month{
    font-size: 14px;    
  }
  .carpet-plot-day{
    float: left;
    width: 17px;
    height: 17px;
    border: solid 1px #fff;
  }
  .carpet-plot-day.green{
    background-color: #00ff00;
  }
  .carpet-plot-day.yellow{
    background-color: #ffff00;
  }
  .carpet-plot-day.red{
    background-color: #ff0000;
  }
  .carpet-plot-day:hover{
    background-color: #a8a8a882;
    
  }

  .carpet-plot-day.green.active{
    background-color: #059005;
  }
  .carpet-plot-day.yellow.active{
    background-color: #c98706;
  }
  .carpet-plot-day.red.active{
    background-color: #a90606;
  }

