      body {
        margin: 0;
        padding: 5px;
      }
      .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 5px;
      }
      h2 {
        margin-top: 0;
      }
      .row {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        cursor: move;
      }
      .label {
        width: 150px;
        font-weight: 600;
        padding-right: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
      }
      .drag-icon {
        cursor: grab;
        font-size: 1em;
        color: #999;
      }
      .drag-icon:hover::after {
        content: "Drag to reorder";
        position: absolute;
        background: #333;
        color: #fff;
        font-size: 0.75em;
        padding: 2px 6px;
        border-radius: 4px;
        top: -24px;
        left: 0;
        white-space: nowrap;
      }
      .current-time {
        width: 70px;
        color: #555;
        font-size: 0.9em;
      }
      .bar {
        flex-grow: 1;
        display: flex;
        height: 40px;
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        margin-left: 0px;
      }
      .hour-block {
        flex: 1;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        font-size: 0.75em;
        color: #333;
        font-weight: 500;
      }
      .work-hour {
        background-color: #66d38c;
      }
      .near-hour {
        background-color: #f4a259;
      }
      .off-hour {
        background-color: #dddfe4;
      }
      .current-marker {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        background: red;
        left: 50%;
      }
      .add-location {
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        position: relative;
      }
      .left-controls {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
      }
      #locationInput {
        width: 200px;
        padding: 5px;
        font-size: 13px;
        text-align: center;
        border: 2px solid #d7e2fa;
        border-radius: 6px;
      }
      .autocomplete-list {
        position: absolute;
        top: 35px;
        left: 0;
        font-size: 13px;
        background: white;
        border: 1px solid #ccc;
        max-height: 200px;
        overflow-y: auto;
        width: 200px;
        z-index: 100;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      }
      .autocomplete-item {
        padding: 6px 10px;
        cursor: pointer;
      }
      .autocomplete-item:hover {
        background: #f0f0f0;
      }
      .add-location button {
        padding: 6px 10px;
        font-size: 13px;
        cursor: pointer;
        background: #eeeeee;
        border: 2px solid #cccccc;
        border-radius: 6px;
        white-space: nowrap;
      }
      .remove-btn {
        background: transparent;
        border: none;
        color: #f43f5e;
        font-size: 1.1em;
        cursor: pointer;
      }