* {
    font-family: "Nunito", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    color: #000;
}

html {
    width: 100vw;
    overflow-x: hidden;
}

body {
    background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
    min-height: 100dvh;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    line-height: 48px;
    display: block;
}

main {
    position: relative;
}

button {
    cursor: pointer;
}

a {
    color: #000;
    font-weight: 600;
}

.cute-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: block;
    padding: 100px 10px;
}

.cute-container-bg {
    width: 100%;
    max-width: 1000px;
    margin: 80px auto 30px auto;
    position: relative;
    display: block;
    padding: 12px;
    border-radius: 8px;
    background: #fff; 
    border: 1px solid #ccc;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.table-container {
    width: 100%;
    overflow: auto;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
    width: 100%;
    display: block;
}

.input {
  border: 1px solid #d1d5db; /* border-gray-300 */
  border-radius: 0.375rem;    /* rounded-md */
  padding: 0.5rem 0.75rem;    /* py-2 px-3 */
  width: 100%;                /* w-full */
  outline: none;
  transition: box-shadow 0.2s;
}
.input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #3b82f6; /* focus:ring-2 focus:ring-blue-500 */
}

.btn {
  border-radius: 0.375rem;    /* rounded-md */
  font-weight: 500;           /* font-medium */
  transition: opacity 0.2s;   /* transition */
}
.btn:hover {
  opacity: 0.9;               /* hover:opacity-90 */
}

@media (max-width: 1000px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 26px;
        line-height: 37px;
    }
    .cute-container-bg {
        width: 100%;
        max-width: 1000px;
        margin: 60px auto 30px auto;
        position: relative;
        display: block;
        padding: 12px;
        border-radius: 8px;
        background: #fff; 
        border: 1px solid #ccc;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    main {
        padding: 0 10px;
    }
}