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

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

.oshitabi-button-general:disabled {
    background: #d3d3d3;
    border: solid 2px #656565;
    color: #656565;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.button-gradient-border {
    background: linear-gradient(to top, var(--color-sub), var(--color-sub) 50%, #fff 100%);
    background: linear-gradient(to top, var(--color-sub), var(--color-sub) 50%, #fff 100%);
    border: none;
    border-radius: 50px !important;
    padding: 10px 20px;
    text-align: center;
    /* color: var(--color-sub3); */
    color: white;

    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    width: 80% !important;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.button-gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px !important;
    padding: 2px;
    background: -webkit-gradient(linear, left top, right top, from(var(--color-sub)), color-stop(var(--color-sub2)), color-stop(var(--color-sub)), to(var(--color-sub2)));
    background: linear-gradient(0deg, var(--color-sub), var(--color-sub2), var(--color-sub), var(--color-sub2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.button-gradient-border:hover {
    background-color: rgba(255, 192, 203, 0.3);
}

.button-gradient-border img {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.button-gradient-border:disabled::before {
    background: none;
}

.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;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    height: 80px;
    max-height: 80px;
    aspect-ratio: 5 / 1;
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* pointer-events: none; */
    margin: 5px auto 10px;
    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; */
}

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

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


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

.iconButton .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
}

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

.iconButton .iconButtonText {
    font-size: 20px;
    font-weight: 600;
    flex: 6;
    text-align: left;
    padding-left: 10px;
}

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

/* .iconButton .iconAfter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
} */


/* button related */
/* .oshitabiButton {
    color: #fff;
    background: linear-gradient(to right, #f8bd00, #f19500, #eb6c00);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px;
    font-size: 18px;
    font-weight: 500;
    width: 90%;
    max-width: 400px;
    height: 60px;
    letter-spacing: 1px;
    z-index: 10;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 10px;
    border: 1px solid white;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.oshitabiButton img {
    height: 24px;
    width: auto;
    margin-right: 15px;
}

.oshitabiButton:active {
    transform: scale(0.98);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
} */

.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: 45%;
    max-width: 200px;
    height: 80px;
    max-height: 80px;
    aspect-ratio: 5 / 1;
    border-radius: 5px;
    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 .rectangleButtonText {
    font-size: 18px;
    font-weight: 600;
}

.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: 4px;
    pointer-events: none;
    flex-direction: column;
}