/* assets/style.css */
html {
  scroll-behavior: smooth;
}

.jump-btn-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;   /* center horizontally */
  gap: 100px;                /* <--- control inter-button distance here */
  align-items: center;
}

.jump-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

.jump-btn:hover,
.jump-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  outline: none;
}
.sections {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.section {
  height: 400px;
  border: 1px solid #333;
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 8px;
  background: #fff;
}

.section H2 {
  text-align: center;
}
.my-button {
    color: white;                 /* text color */
    background-color: #2c3e50;    /* dark slate */
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
}
/* styles.css */
.square-input {
    border-radius: 6px;            /* slightly rounded corners */
    border: 2px solid #007BFF;     /* blue border */
    padding: 6px;
    font-size: 14px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    width: 10%;                   /* fill parent column */
    margin-right: 15px;
    margin-bottom: 10px;
    margin-left: 15px;
    transition: all 0.2s ease;    /* smooth focus effect */
}
