﻿/* Titlebar fix */
.rcTitlebar {
  background-color: #003366;
  color: #971414 !important;
  text-align: center;
}

/* Force rcTitle text to show */
.rcTitlebar .rcTitle {
  color: #795548 !important;
  font-size: 16px;
  font-weight: bold;
}

/* Also handle anchor tags inside titlebar (prev/next arrows) */
.rcTitlebar a {
  color: #ffffff !important;
  text-decoration: none;
  padding: 0 6px;
}

.rcTitlebar a:hover {
  color: #aad4ff !important;
}


/* General calendar popup background */
.RadCalendarPopup {
  background-color: #f0f8ff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Shadow elements */
.rcShadTR, .rcShadBR {
  background-color: transparent;
}

/* Titlebar */
.rcTitlebar {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 8px;
}

/* Calendar title */
.rcTitlebar .rcTitle {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

/* Table cells (days) */
table.RadCalendar td {
  padding: 6px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #ffffff;
  transition: background-color 0.3s;
}

table.RadCalendar td:hover {
  background-color: #e6f0ff;
  cursor: pointer;
}

/* Weekend styling */
table.RadCalendar td.rcWeekend {
  background-color: #ffefef;
  color: #990000;
}

/* Other month styling */
table.RadCalendar td.rcOtherMonth {
  color: #999;
  background-color: #f9f9f9;
}

/* Remove extra shadows */
.rcShadBL, .rcShadBR {
  display: none;
}

table.RadCalendar caption {
  display: none !important;
}


/* Calendar Month View - Clean, Minimal */
.RadCalendarMonthView {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #ccc;
  padding: 12px;
  width: auto;
}

/* Table Cells */
.RadCalendarMonthView td {
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s ease-in-out;
}

/* Default Cell Styling */
.RadCalendarMonthView td a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 14px;
}

/* Hover Effect */
.RadCalendarMonthView td:hover {
  background: #f4f4f4;
}

/* Remove Strong Blue for Selected Cells */
.RadCalendarMonthView td.rcSelected {
  color: #222 !important;
  font-weight: bold;
}

/* Buttons Section */
.RadCalendarMonthView td.rcButtons {
  background: none !important;
  text-align: center;
  padding: 12px;
  border-top: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
}

/* Clean, Flat Buttons */
.RadCalendarMonthView td.rcButtons input[type="button"] {
  background: #444 !important;
  color: #fff !important;
  border: none !important;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  margin: 0 6px;
}

/* Button Hover */
.RadCalendarMonthView td.rcButtons input[type="button"]:hover {
  background: #666 !important;
}


.RadCalendarMonthView_Default #rcMView_Feb, 
.RadCalendarMonthView_Default #rcMView_Apr, 
.RadCalendarMonthView_Default #rcMView_Jun, 
.RadCalendarMonthView_Default #rcMView_Aug, 
.RadCalendarMonthView_Default #rcMView_Oct, 
.RadCalendarMonthView_Default #rcMView_Dec {
    border-right: none !important;
}




