 .calendar-wrapper {
      width: 100%;

     
      background: #fff;
      
      font-family: sans-serif;
    }
	
	 .calendar-wrapper2 {
      width: 100%;
	  margin-top:10px;
	  padding:5px;
	  border-radius: 10px;
      background: #E9E9E9;
      font-family: sans-serif;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 6px;
      border: none;
	  border-radius: 10px;
	  border: 1px solid #e0e0e0;
	  background: #fff;
    }

    thead td {
      border: none;
      padding: 10px 0;
    }

    .calendar-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: bold;
      font-size: 18px;
      color: #333;
    }

    .days td {
      color: #666;
      font-weight: 600;
      font-size: 13px;
      padding: 5px 0;
      background: none;
      border: none;
    }

    td {
      height: 40px;
      width: 40px;
      text-align: center;
      vertical-align: middle;
      font-size: 14px;
      border: none;
      padding: 0;
    }

    td.not-current {
      color: #ccc;
      background: none;
    }

    td.today2 {
      background-color: #ffc107;
      color: #000 !important;
      font-weight: bold;
      border-radius: 8px;
    }

    td.normal {
      background-color: #90BE23;
      color: #000;
      font-weight: bold;
      border-radius: 8px;
      transition: background 0.3s;
    }

    td.normal:hover {
      background-color: #5FE072;
    }

    td.bloqueado {
      background-color: #f5f5f5;
      color: #bbb;
      font-weight: normal;
      pointer-events: none;
      border-radius: 8px;
    }
	
	td.selecionado {
  background-color: #ffc107 !important; /* verde mais escuro */
  color: #000 !important;
  font-weight: bold;
  border-radius: 8px;
}

    
    #btnNext {
      background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: #006600;
	   margin-left:20px;
    }
	
	#btnPrev {
		
	 background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: #006600;
	  margin-right:50px;
    }	

    #btnPrev:hover,
    #btnNext:hover {
      color: #333;
      font-weight: bold;
    }
	
	.calendar-controls {
  display: flex;
  position:absolute;
  justify-content: center;
  gap: 100px;
  margin-top: 21px;
  margin-left:261px;
}

@media (max-width: 480px) {
  .calendar-controls {
    margin-left: 210px;
  }
  
   #btnNext {
      background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: #006600;
	   margin-left:40px;
    }
	
	#btnPrev {
		
	 background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: #006600;
	  margin-right:20px;
    }	
}
	
	