/* 기본 버튼 스타일 개선 */
.md-button {
    background-color: #2c2c2c;  /* 보라/네이비 계열 */
    color: #fff !important;
    padding: 0.6em 1.2em;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s ease-in-out;
  }
  
  .md-button:hover {
    background-color: #4338ca; /* hover 진한 보라 */
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transform: translateY(-1px);
  }
  
  /* 기본(primary) 버튼 */
  .md-button--primary {
    background-color: #16a34a; /* 초록 */
  }
  
  .md-button--primary:hover {
    background-color: #15803d;
  }
  