 .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;
      position: relative;

    }

    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: 15px !important;
      cursor: pointer;
      color: #ccc;
      height: 24px;
      line-height: 24px;
      margin: 0 !important;
      padding: 0;
      position: absolute;
      text-align: center;
      width: 24px;
      left: calc(50% + 92px);
    }
	
	#btnPrev {
		
	 background: none;
      border: none;
      font-size: 15px !important;
      cursor: pointer;
      color: #ccc;
      height: 24px;
      line-height: 24px;
      margin: 0 !important;
      padding: 0;
      position: absolute;
      text-align: center;
      width: 24px;
      left: calc(50% - 118px);
    }	

    #btnPrev:hover,
    #btnNext:hover {
      color: #333;
      font-weight: bold;
    }
	
	.calendar-controls {
  display: block;
  height: 24px;
  left: 0;
  margin: 0 !important;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 2;
}

.calendar-controls button {
  pointer-events: auto;
}

@media (max-width: 480px) {
  .calendar-controls {
    top: 30px;
  }
  
   #btnNext {
      background: none;
      border: none;
      font-size: 15px !important;
      cursor: pointer;
      color: #006600;
      left: calc(50% + 82px);
    }
	
	#btnPrev {
		
	 background: none;
      border: none;
      font-size: 15px !important;
      cursor: pointer;
      color: #006600;
      left: calc(50% - 108px);
    }	
}
	
	
