.relative.inline-block .p-1 {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }

  .relative.inline-block:hover .p-1 {
    opacity: 1;
  }
  .week-dropdown1 {
    position: relative;
    display: inline-block;
  }
  .edit-button {
    height: 43px;
    box-shadow: 0px 4px 6px rgba(218, 182, 122, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .edit-button:hover {
    box-shadow: 0px 4px 8px rgba(218, 182, 122, 0.7);
  }
  .automated-button {
    height: 43px;
    box-shadow: 0px 4px 6px rgba(218, 182, 122, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(218, 182, 122, 0.5);
    border-radius: 4px; 
  }
  .text-gray-800 {
    color: #1f2937;
  }

  .plus-button1 {
    background-color: #e4e6eb;
    color: #323c4c;
    width: 44px;
    height: 44px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
  }
  .button-bg1{
    color: #323c4c;
    background-color: #e4e6eb !important;
  }
  .button-bg1:hover{
      color: #4a5568;
  }

  .plus-button1:hover {
    color: #4a5568;
  }

  .dropdown-content1 {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 6px;
    margin-top: 5px;
  }

  .dropdown-content1 button {
    width: 100%;
    background: none;
    border: none;
    color: #4a5568;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dropdown-content1 button:hover {
    background-color: rgb(228 229 235);
    border-radius: 6px;
    color: #000
  }
  .week-form1{
      right: -10px;
  }

  .show {
    display: block;
  }


  .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    border: 5px solid transparent;
    border-top: 5px solid #AB7F57; /* Primary color */
  }


.loader::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-bottom: 5px solid #AB7F57;
    animation: nudge 1s ease-in-out infinite;
  } 

  /* Background blur effect for the entire body */
  .blur-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
    z-index: 1;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes nudge {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }


  .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    border: 5px solid transparent;
    border-top: 5px solid #AB7F57; /* Primary color */
  }


.loader::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-bottom: 5px solid #AB7F57;
    animation: nudge 1s ease-in-out infinite;
  } 

  /* Background blur effect for the entire body */
  .blur-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
    z-index: 1;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes nudge {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .compose-text1 {
    border: 1.5px solid;
    border-color: #dfd5b6; 
    border-radius: 7px;
  }
  
  .compose-start {
      margin-right: 40px;
      box-shadow: 0px 1px 9px 4px #dfd5b6;
      border: 2px solid;
      border-color: #e4c999;
      border-radius: 7px;
  }
  .compose-box {
    border: 2px solid;
    border-color: #dfd5b6;
    padding-left: 0px;
    padding-right: 0px; 
    box-shadow: 0px 20px 20px 1px #dfd5b6;
  }

  .devise-bg-color {
    background: #f0eae1
  }

  /* Expandable textarea styles for nudge inputs */
  .expandable-textarea {
    transition: height 0.2s ease, rows 0.2s ease;
    resize: none;
    overflow: hidden;
    min-height: 42px;
  }

  .expandable-textarea.expanded {
    overflow: auto;
  }

  .expandable-textarea:focus {
    min-height: 100px;
  }