
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    display: flex;
    flex-direction: column;  /* 추가 */
  }

.LoginShort_Btc {
    color: #ddd;
    font-size: 16px;
    padding: 0px 0px 5px 10px;
  }

#container { 
  width: 100%;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
  .barWrap {
    position: relative;
    display: flex;
    width: 100%;
    height: 60px;
    background: #1a1f3a;
    border: 1px solid #2a3458;
    border-radius: 4px;
    padding: 15px;
    overflow: hidden;
  }
  .barLong {
    background: linear-gradient(90deg, #0a5c2e, #00c853);
    height: 100%;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    transition: width 0.3s ease;
  }
  .barShort {
    background: linear-gradient(90deg, #c62828, #ff1744);
    height: 100%;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    transition: width 0.3s ease;
  }
  .barLabels {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
    z-index: 10;
  }
  .barLabels span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0px 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  }
