body {
	font-family: 'Roboto', sans-serif;
	color: #636465;
	margin: 0;
	padding: 0;
}

input,
textarea,
select,
button {
	font-family: 'Roboto', sans-serif
}

.calendarDayCell {
    font-size: 30px;
    position: relative;
}

.calendarDayCellEnglish {
    font-size: 10px;
    text-align: right
}

.calendarDayCellEnglishBold {
    font-size: 10px;
    color: rgb(114, 5, 5);
    font-weight: bold;
    text-align: right
}


.calendarYearHeading {
    text-align: center;
    font-weight: bold;
    margin: 15px;
    font-size: 18px;
}

.calendarMonthHeading {
    text-align: center;
    font-weight: bold;
    margin: 15px;
    font-size: 18px;
}

#calendar td, th{
    width: 14%;
    padding-left: 3px;
    padding-right: 2px;
    padding-top: 0px;
    padding-bottom: 0px;
    min-width: 45px;
}

.calendarContainer {
    margin: 15px;
}

.iddatContainer {
    margin: 15px;
}


.indicatorImpMiqaat {
  position: absolute;
  top: -18px;
  right: 8px;
}

.indicatorPersonalMiqaat {
  position: absolute;
  top: -9px;
  right: -3px;
}

.indicatorSharedMiqaat {
  position: absolute;
  top: -18px;
  right: -3px;
}

.indicatorAllMiqaat {
  position: absolute;
  top: 9px;
  right: -3px;
}



.miqaatContainer {
    margin: 15px;
}

.miqaatDayCell {
    width: 10%;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
}

.miqaatDescCell {
    font-size: 13px;
    font-weight: normal;
}

.miqaatDescCell > div {
    margin-bottom: 5px;
}

.miqaatDayCell {
    padding: 0px;
}

.miqaatLine {
    line-height: 15px;
}

.miqaatLine .event, .event-item .event {
  position: relative;
  padding-left: 20px;
}

.miqaatLine .star, .event-item .star {
  position: absolute;
  left: 0;
  top: -3px;
  width: 20px;          /* adjust to your icon size */
  text-align: center;
}

.miqaatCalendarDetails{
    font-size: 10px;
    color: #05996f;
    font-weight: bold;
}

.miqaatCalendarDetails .label{
    font-size: 10px;
    font-style: italic;
    font-weight: normal;
}

.googleSignInButton {
    background-color: #f6ebf6;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
 }

.blinking {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.miqaatFilter {
    margin: 15px;
    display: flex;
    align-items: center;
    font-size: small;
    border: 1px solid #ccc;
    padding: 3px;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.miqaatFilter label {
  margin-right: 0px;
  margin-left: -6px;
}

.miqaatFilter label svg{
  margin-right: -5px;
}

.arabic-numerals {
    font-size: 30px;
}

.font-small {
    font-size: small;
}

.font-medium {
    font-size: medium;
}

#createEventModal .form-select{
    font-size: small;
}

#createEventModal,#editEventModal .form-control{
    font-size: small;
}

.editMiqaatIcon svg{
    cursor: pointer;
    margin-left: 10px;
}

    :root {
      --stroke: 3;
      --duration: 3s;
      --circ: 139; /* circumference for r=20 */
    }

    .download-btn {
      position: relative;
      width: 27px;
      height: 27px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: linear-gradient(180deg, #d3ddeb, #6896db);
      color: white;
      font-size: 36px;
      cursor: pointer;
      overflow: hidden;
      padding: 0;
    }

    .download-btn .download-icon {
      z-index: 1;
      font-size: 0.5em;
      line-height: 1;
    }

    /* SVG overlay */
    .progress-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      display: none; /* hidden by default */
    }

    .progress-svg circle { fill: none; }

    .progress-bg {
      stroke: rgba(255,255,255,0.3);
      stroke-width: var(--stroke);
    }

    .progress-bar {
      stroke: #000;
      stroke-width: var(--stroke);
      stroke-linecap: round;
      stroke-dasharray: var(--circ);
      stroke-dashoffset: var(--circ);
      transform-origin: 50% 50%;
      transform: rotate(-90deg);
    }

    /* When active, show SVG and animate bar */
    .progress-svg.active {
      display: block;
    }

    .progress-svg.active .progress-bar {
      animation: countdown var(--duration) linear forwards;
    }

    @keyframes countdown {
      to { stroke-dashoffset: 0; }
    }