.fixed-new-button {
    /* position: fixed;
    right: 30px; */
    z-index: 1000;
    /* gap: 10px;
    align-items: center; */
    display: flex;
    position: absolute;
    top: 110px;
    right: 20px;
    gap: 10px;
    align-items: center;
  }
  .fixed-new-button .btn {
    background-color: var(--unit-color);
  }

    
    
/* モバイル対応 */
@media (max-width: 768px) {
    /* デスクトップの新規追加ボタンはモバイルでは非表示 */
    .fixed-new-button {
    display: block !important;
    margin-bottom: 15px;
    text-align: center;
    position: fixed;
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
    z-index: 1000;
    position: fixed !important;
    /* top: 80px !important;
    right: 15px !important; */
    z-index: 1000;
    display: none !important;
    margin-bottom: 20px;
    text-align: center;
}

    .fixed-new-button .btn {
    display: inline-block;
    margin: 5px;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
  
  }
  