body > .todo-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 300px;
  max-height: 70vh;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  padding: 12px;
  z-index: 1050;
  overflow-y: auto;
}

body > #todoToggleBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1051;
}
  
  .resize-handle-start {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16px;
    height: 16px;
    cursor: ew-resize;
    background: #ddd;
    border-top-right-radius: 4px;
  }
  
  .todo-panel.expanded {
    width: 500px;
  }
  
  .todo-item-text {
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  .todo-status-select {
    margin-top: 4px;
  }

  .fade-in {
    animation: fadeIn 0.3s ease-in;
  }
  
  .fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
  
  .todo-item-text {
    word-break: break-word;
  }
  
  .todo-status-select {
    width: 100%;
  }
  
  .btn-close {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  #avatarPreviewContainer {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid #ccc;
  }
  
  #avatarPreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  