.loginRgisterButton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    margin: 10px auto;
    text-decoration: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-height: 50px;
}

.loginRgisterButton .iconButtonText {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin-right: 10px;
}

.loginRgisterButton:disabled {
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
}

.loginRgisterButton:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.loginRgisterButton .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.loginRgisterButton .icon img {
    height: 25px;
    width: auto;
}



.whiteButton {
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    height: 60px;
    max-height: 60px;
    max-width: 400px;
    letter-spacing: 1px;
    /* pointer-events: none; */
}

.whiteButton:disabled {
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
}


.whiteButton:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}


.stampComment {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    /* pointer-events: none; */
}

.iconButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 80px;
    aspect-ratio: 5 / 1;
    padding: 0;
    /* we’ll control inner spacing via flex items */
    box-sizing: border-box;
    margin: 5px auto 10px;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 0px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
    cursor: pointer;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.iconButton.gold-gradient-border {
    /* outer gold-gradient border */
    border: 3px solid transparent;
    border-image: linear-gradient(135deg,
            #AA955D 0%,
            #FAF7E1 50%,
            #AA955D 100%) 1;
    border-image-slice: 1;
}

/* crisp white inner line */
.iconButton.gold-gradient-border::before {
    content: '';
    position: absolute;
    inset: 4px;
    /* matches outer border width */
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0px;
    /* 40px − 4px */
    pointer-events: none;
}

/* hover & active states */
.iconButton.gold-gradient-border:active {
    transform: scale(0.95);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2);
}

/* inner icon/text layout remains the same */
.iconButton .icon {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconButton .icon img {
    width: 40px;
}

.iconButton .iconButtonText {
    flex: 5;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 0px 5px 0px 0px;
    line-height: 1.2;
}

.iconButton .icon2nd {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconButton .icon2nd img {
    width: 20px;
}

/* disabled state unchanged */
.iconButton:disabled {
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.disabled {
    filter: grayscale();
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
}

.buttonContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    /* Take full width */
}

.oshitabiButton {
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* background: linear-gradient(to right, #1b1659, #8a24ff); */
    background: linear-gradient(to right, black, black, black);
    width: 80%;
    max-width: 400px;
    height: 50px;
    max-height: 50px;
    aspect-ratio: 4 / 1;
    margin-bottom: 10px;
    border: 0px #fff;
    border-radius: 25px;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
    font-size: 18px;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.backButton {
    background: linear-gradient(to right, gray, darkgray);
}


.oshitabiButton:disabled {
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
}


.oshitabiButton:active {
    /* Styles for when the button is clicked */
    transform: scale(0.95);
    /* Slightly scale down the button */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    /* Optionally, change the shadow for depth effect */
}

.oshitabiButton::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    border: 2px solid #fff;
    border-radius: 23px;
    pointer-events: none;
    flex-direction: column;
}

.narrowIconButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    height: 60px;
    max-height: 60px;
    border-radius: 30px;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* pointer-events: none; */
    margin: 5px auto 20px;
    color: white;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* border: white solid 0.6px; */
}

.narrowIconButton:disabled {
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
}

.narrowIconButton::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    pointer-events: none;
    flex-direction: column;
}


.narrowIconButton:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.narrowIconButton .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 3;
}

.narrowIconButton .icon img {
    height: 38px;
}

.narrowIconButton .narrowIconButtonText {
    font-size: 20px;
    font-weight: 600;
    flex: 6;
    text-align: left;
    padding-left: 0px;
}

.rectangleButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 48%;
    max-width: 200px;
    height: 80px;
    max-height: 80px;
    aspect-ratio: 5 / 1;
    border-radius: 0px;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* pointer-events: none; */
    margin: 5px auto 20px;
    color: white;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* border: white solid 0.6px; */
}

.rectangleButton .iconButtonText {
    font-size: 18px;
    font-weight: 700;
}

.rectangleButton:disabled {
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: not-allowed;
    transform: none;
}

.rectangleButton::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 0px;
    pointer-events: none;
    flex-direction: column;
}