/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

 <style>
    body {
      font-family: Arial, sans-serif;
      padding: 20px;
      background: background-color:#889e2a;;
    }

    h1 {
      margin-bottom: 10px;
      text-align:center;
      font-size: 30px;
    }

     .info {
      margin-top: 20px;
      margin-bottom: 10px;
      text-align:center;
    }
    
    p {
      margin-top: 0;
      margin-bottom: 20px;
    }

    .calendar {
      background: #fff;
      border: 1px solid #ccc;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      margin-bottom: 40px;
      padding-bottom: 10px;
    }

    .calendar h2 {
      background: -moz-linear-gradient(#cbed39, #889e2a);
	  background: -o-linear-gradient(#cbed39, #889e2a);
	  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cbed39), to(#889e2a)); /* older webkit syntax */
	  background: -webkit-linear-gradient(#cbed39, #889e2a);
	  padding: 10px;
      margin: 0 0 10px 0;
      font-size: 25px;
      text-align: center;
      border-bottom: 1px solid #ccc;
      color:  #000;
      font-family: calibri;
    }

    
    .months-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(180px, 1fr));
      gap: 10px;
      padding: 0 10px 10px 10px;
    }

    @media (max-width: 1000px) {
      .months-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
      }
    }

    @media (max-width: 600px) {
      .months-grid {
        grid-template-columns: 1fr;
      }
    }

    .month {
      border: 1px solid #ccc;
      background: #fff;
    }

    .month h3 {
      background: #fafafa;
      margin: 0;
      padding: 6px;
      font-size: 14px;
      text-align: center;
      border-bottom: 1px solid #ddd;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      text-align: center;
      font-size: 12px;
    }

    .day {
      background: #f0f0f0;
      padding: 4px;
      border-bottom: 1px solid #ddd;
      font-weight: bold;
    }

    .date {
      padding: 6px 0;
      border-bottom: 1px solid #eee;
      border-right: 1px solid #eee;
      min-height: 22px;
    }

    .date:nth-child(7n) {
      border-right: none;
    }

    .date.empty {
      background: #fafafa;
    }

   
    /* Not available (grey) */
    .unavailable {
      background: #e0e0e0 !important;
      color: #777;
    }

    /* Available (green) */
    .available {
      background: #d4f8d4;
      color: #0a6b0a;
      font-weight: bold;
    }

    /* Selected booking range (red) */
    .selected {
      background: #ffcccc !important;
      color: #a10000;
      font-weight: bold;
    }

    .calendar-footer {
      padding: 5px 10px 10px 10px;
      text-align: center;
    }

    .save-btn {
      padding: 6px 14px;
      font-size: 13px;
      border: 1px solid #888;
      background: #f5f5f5;
      cursor: pointer;
      border-radius: 3px;
    }

    .save-btn:hover {
      background: #e0e0e0;
    }

    .status {
      font-size: 12px;
      color: #555;
      margin-top: 6px;
      min-height: 14px;
    }

    .clickable .date.available {
      cursor: pointer;
    }

    .read-only .date {
      cursor: default !important;
    }
  </style>