body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
    font-family: Arial, sans-serif;
    background: url("/assets/calendar/background-2.webp");
    background-position: 100; /* shift image to the left */
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }


  @font-face {
    font-family: 'p4g';
    src: url('/assets/fonts/Fontsona4Golden.woff') format('truetype');
    }
  
    .test-font {
      font-family: 'p4g';
      font-size: 24px;
      color: black;
      margin-top: 60px;
    }

.planner-instructions {
  font-family: 'p4g';
  position: absolute;
  top: 1.5vw;
  left: 0.4vw;
  max-width: 300px;
  white-space: normal;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 6px;
  border-radius: 8px;
  z-index: 1000;
}


  
  #clockCanvas {
    /* border: 2px solid #000;
    border-radius: 50%; */
    /* background-image: url('./assets/calendar/chie.png'); /* Replace with your image path */
    background-size: cover; /* Ensures the image fits the canvas */
    background-position: center;
    color: white;
  }

  #taskPopup {
    position: absolute;
    background: white;
    border: 1px solid black;
    padding: 10px;
    z-index: 100;
}
  
  #timeRangeDisplay {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  #taskInput {
    width: 100%;
    padding: 5px;
    font-size: 14px;
  }
  
  .hidden {
    display: none;
}
  
  .hover-time {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    display: none;
  }
  
  #taskList {
    position: absolute;
    top: 50%;
    right: 120px; /* Push it away from the edge */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10;
  }
  

.task-entry {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    padding: 8px;
    margin-bottom: 10px;
    width: 220px;
    border-radius: 5px;
}

.task-entry input {
    width: 90%;
    margin-top: 5px;
    padding: 5px;
    font-size: 14px;
}

.highlighted {
  background-color: rgb(34, 255, 0); /* or any color that stands out */
  /* font-weight: bold; */
  color: black;  /* Contrast text color */
}

#planner {
  display: flex;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px; /* Adjust based on your image height */
  z-index: 10;
}

#plannerText {
  height: 100%;
}

#plannerDots {
  flex: 1;
  height: 100%;
  background-image: url('/assets/calendar/planner-repeat.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}

.save-button {
  position: fixed;
  bottom: 20px;
  left: 71%;
  transform: translateX(-50%);
  font-family: 'p4g';
  font-size: 20px;
  padding: 10px 20px;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.save-button:hover {
  background-color: #786922;
}
