/* common */
::-webkit-scrollbar {
    display: none;
}

/* Chrome, Safari, Edge, Opera */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* Firefox */
input[type="search"] {
    -moz-appearance: textfield;
}

/* Internet Explorer */
input[type="text"]::-ms-clear,
input[type="search"]::-ms-clear {
    display: none;
}

input[type="date"] {
    background-color: white;
    color: black;
    /* Safariのアウトラインを削除する場合 */
    -webkit-appearance: none;
    border: 1px solid grey;
    border-radius: 4px;
    padding: 5px;
}

.body::-webkit-scrollbar {
    display: none;
}

.btn-primary-design {
    border-color: darkblue;
    white-space: nowrap;
    width: auto;
}

.btn-dark-design {
    border-color: black;
    white-space: nowrap;
    width: auto;
}

.btn-light-design {
    border-color: black;
    white-space: nowrap;
    width: auto;
}


/* header */

header {
    position: fixed;
    margin-top: 0;
    z-index: 1;
    width: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
}

.header-logo {
    display: block;
    position: relative;
    text-decoration-line: none;
    white-space: nowrap;
    font-size: 20px;
    color: rgb(33, 37, 41);
    text-align: left;
}

.header-login {
    display: block;
    position: relative;
    text-decoration-line: none;
    white-space: nowrap;
    color: rgb(33, 37, 41);
    text-align: right;
    width: auto;
    margin-left: 15px;
}

.header-search {
    display: flex;
    width: 350px;
    position: relative;
    text-align: center;
    align-items: center;
}

.header-search-button {
    font-size: 23px;
    right: 5px;
    position: absolute;
    color: grey;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header-input-search {
    background-color: #ebebeb;
    width: 100%;
}

.header-nickname {
    display: flex;
    align-items: center;
    margin: 0 5px;
}

/* モバイル */
@media (max-width: 767px) {
    .header-nickname {
        display: none;
    }
}

.header-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-item .far, .dropdown-item .fas {
    width: 20px;
}

.dropdown-item .notice-label {
    font-size: 0.8rem;
    max-width: 60vw;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.dropdown-item {
    left: 0;
}

.window-close {
    margin: 10px;
    height: 30px;
}


nav {
    border-bottom: 1px solid #6c757d;
    height: 60px;
}

main {
    padding-top: 60px;
}

/* エラーメッセージ */

ul.errorlist {
    margin: 0;
    padding: 0;
}

ul.errorlist li {
    color: red;
    display: block;
    text-align: left;
    font-size: 0.8rem;
}

ul.infolist {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 0;
}

ul.infolist li:before {
    content: "*";
}

ul.infolist li {
    display: block;
    text-align: left;
    font-size: 0.8rem;
}

.label-required {
    color: orangered;
    font-size: 0.8rem;
}


/* フォーム */

#id_room_name {
    max-width: 100%;
    width: 500px;
}

#id_room_description {
    max-width: 100%;
    width: 500px;
    height: 100%;
    resize: none;
}

#id_user_address {
    max-width: none;
    width: 100%;
}

#id_user_profile {
    width: 100%;
}

#id_nick_name {
    max-width: 100%;
    width: 500px;
}

#chat-text {
    width: 100%;
    resize: none;
    border: 1px solid #ddd;
    box-sizing: border-box;
    padding: 0;
    min-height: 50px;
    max-height: 150px;
    position: relative;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-y: auto;
}

/* home画面 */
.home-nav-bar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding-left: 2px;
}

.home-room-link {
    padding: 0;
    color: rgb(33, 37, 41);
    text-decoration: none;
}

.home-room-img {
    padding: 10px;
    position: relative;
}

.home-room-img .room-img {
    width: 100%;
    height: 100%;
}

.home-room-img .notice-number {
    position: absolute;
    top: 15px;
    right: 15px;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    border-radius: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 5px;
}

.home-room-img .notice-live {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    height: 30px;
    background-color: red;
    color: white;
    font-size: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-room-img .icon-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.container h1 {
    font-size: 20px;
    color: white;
    border-radius: 5px;
    padding-left: 5px;
}

/* 画面共通 */

.main-common-container {
    min-height: 90svh;
}

.common-container {
    position: relative;
    border-width: 1px;
    border-style: solid;
    border-top-style: none;
    border-bottom-style: none;
    height: 100%;
    width: 100vw;
    max-width: 800px;
}

.common-content-container {
    padding: 20px 20px;
}

.common-select-box {
    width: auto;
}

.common-content {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.common-content2 {
    margin-top: 20px;
    width: 100%;
    position: relative;
}

/* 編集画面共通 */

.edit-common-header {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #6c757d;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);

}

.edit-common-header-title {
    white-space: nowrap;
    font-size: 20px;
    color: rgb(33, 37, 41);
}

.edit-common-header-button {
    display: block;
    position: relative;
    text-decoration-line: none;
    font-size: 16px;
    text-align: center;
    border-radius: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

.edit-common-main {
    padding: 20px;
}


.edit-common-notice-label {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* ルーム作成 */

.room-create-contents {
    padding-left: 10px;
    padding-right: 10px;
}

.room-create-content {
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.room-create-content-sub {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.room-create-label {
    font-weight: bold;
    width: 200px;
}

.room-create-label-sub {
    width: 200px;
    padding-left: 30px;
    white-space: nowrap;
}

.room-create-label-text {
    white-space: nowrap;
    margin-left: 10px;
}

.room-create-box {
    width: auto;
}

/* モバイル */
@media (max-width: 767px) {
    .room-create-box {
        width: 200px;
    }
}


/* ルーム情報 */

.room-info-img-area {
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
}

.room-info-img-area .room-img {
    object-fit: cover;
}

.room-info-img-link-area {
    position: absolute;
    bottom: 0;
    left: 0;
}

.room-info-img-link-area .icon-img {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    object-fit: cover;
}

/* ルーム情報 */

.room-info-label {
    width: 200px;
    font-weight: bold;
}

.room-info-label2 {
    width: 300px;
    font-weight: bold;
}

.room-info-label3 {
    margin-top: 40px;
    width: 100%;
    font-weight: bold;
}

.room-info-edit-link {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
}

/* ルーム情報 テキスト */

.room-info-text {
    width: 100%;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.room-info-text2 {
    width: 100%;
    word-wrap: break-word;
}

/* ルーム情報 box */

.room-info-box {
    padding: 10px 0;
}

/* ルーム情報 NFT画像 */

.room-info .NFT-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.room-info-nft {
    position: relative;
    padding-bottom: 20px;
}

.room-info-datetime-reset {
    padding: 0;
    margin-left: 5px;
}

/* モバイル */
@media (max-width: 767px) {
    .room-info-datetime-reset {
        position: absolute;
        right: 0;
        top: 0;
    }
}

/* ルーム編集 ルームイメージ画像 */

.room-edit-img-area {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: black;
}

.room-edit-img-container {
    width: 800px;
    height: 800px;
    transform: scale(0.5);
    opacity: 0.8; /* 80%透明 */
    overflow: hidden; /* 超えた分を隠す */
    position: absolute;
}

.user-edit-img-icon {
    position: relative;
    top: 50%;
    left: 50%;
    transform: scale(2);
    z-index: 2;
    color: black;
}

.room-edit-img-container .room-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: none;
    max-height: none;
    z-index: 1;
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: whitesmoke;
}

.image-container-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.room-info-nftImg {
    width: 100%;
    height: 100%;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    font-size: 20px;
    width: 90%;
    text-align: center;
}

.room-edit-nftImg-link {
    color: white;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.room-edit-nftImg-link:hover {
    color: white;
}

.room-edit-deleteIconImg {
    position: absolute;
    top: 2%;
    right: 2%;
    object-fit: cover;
}

.room-edit-updateIconImg {
    position: absolute;
    bottom: 2%;
    right: 2%;
    object-fit: cover;
}

.room-edit-image-input {
    display: none; /* 本来のファイル選択フォームは非表示に */
}


/* NFT編集 */
.nft-edit-label {
    width: 200px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ユーザー情報 */
.user-info-img-area {
    position: relative;
}

.user-info-banner-img {
    object-fit: cover;
}

.user-info-icon-img {
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 50%;
    object-fit: cover;
}

.user-info-label {
    width: 15%;
    white-space: nowrap;
    font-weight: bold;
    margin-right: 30px;
}

.user-info-label2 {
    width: 30%;
    white-space: nowrap;
    font-weight: bold;
}

.user-info-text {
    width: 100%;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-right: 30px;
}

.user-info-edit-link {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
}

.user-info-room-info {
    margin: 10px 10px 0 10px;
    padding: 10px;
    position: relative;
}

.user-info-room-info .room-img {
    width: 100%;
    height: 100%;
}

.user-info-room-info-link {
    text-align: center;
    padding: 0;
    margin: 0;
    color: rgb(33, 37, 41);
    text-decoration: none;
}

.user-info-room-info img {
    max-width: 100%;
}

.user-info-room-info p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    margin-bottom: 0;
    white-space: nowrap;
}

/* ユーザー編集 */

.user-edit-banner-area {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.user-edit-banner-container {
    width: 1024px;
    height: 512px;
    transform: scale(0.7);
    opacity: 0.8; /* 80%透明 */
    overflow: hidden; /* 超えた分を隠す */
    position: absolute;
}

.user-edit-banner-icon {
    position: relative;
    top: 50%;
    left: 50%;
    transform: scale(1.5);
    z-index: 2;
    color: black;
}

.user-edit-banner-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: none;
    max-height: none;
    z-index: 1;
}

.user-edit-icon-container {
    width: 512px;
    height: 512px;
    transform: scale(0.2);
    transform-origin: bottom left; /* 変形の基準点を左下に設定 */
    overflow: hidden; /* 超えた分を隠す */
    position: absolute;
    opacity: 0.8; /* 80%透明 */
    border-radius: 50%;
    bottom: 0;
    left: 0;
}

.user-edit-icon-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(4);
    z-index: 2;
    color: black;
}

.user-edit-icon-img {
    position: absolute;
    max-width: none;
    max-height: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.user-edit-contents {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.user-edit-label {
    width: 200px;
    white-space: nowrap;
    font-weight: bold;
}

.user-edit-input-frame {
    width: 100%;
    margin: 0;
    padding: 0;
}

.user-edit-image-input {
    display: none; /* 本来のファイル選択フォームは非表示に */
}

.user-edit-email-notification-button {
    width: 100%;
    height: 30px;
    margin: 0;
}

/* チャットルーム */
.chat-list-link {
    padding: 0;
    color: rgb(33, 37, 41);
    text-decoration: none;
    width: 100%;
}

.chat-list-link-selected {
    padding: 0;
    color: rgb(33, 37, 41);
    text-decoration: none;
    width: 100%;
    border: 1px solid rgb(78, 152, 225);
    background-color: #edf7ff;
}

.chat-list-icon-img {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-list-name {
    width: 100%;
    margin: 10px 5px;
}

.chat-list-notice-number {
    position: absolute;
    right: 10px;
    text-align: center;
    border-radius: 20px;
    min-height: 20px;
    min-width: 20px;
    padding: 0 6px;
    box-sizing: border-box;
    margin: 10px 5px;
    color: white;
    z-index: 9998; /* メッセージ件数通知はLIVE通知の背面にする */
}

.chat-list-notice-live {
    position: absolute;
    right: 10px;
    text-align: center;
    border-radius: 20%;
    min-width: 20px;
    padding: 0 6px;
    box-sizing: border-box;
    background: red;
    margin: 10px 5px;
    color: white;
    z-index: 9999; /* LIVE通知は最前面にする */
}

.mainContentChat {
    width: 100%;
    height: calc(100svh - 130px);
}

.mainContentChatWrapper {
    min-width: 70%;
    height: 100%;
    position: relative;
}

/* モバイル */
@media (max-width: 767px) {
    .mainContentChatWrapper {
        min-width: 100%;
    }
}

.chat-area-icon-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-area-delete-link {
    margin-right: 3px;
    color: white;
    text-decoration: none;
}

.chat-area-delete-link:hover {
    color: white;
}

.chat-message {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    display: block;
    text-align: left;
}

.chatContainer {
    padding: 0;
    margin: 0;
    font-size: 80%;
    width: 100%;
    height: calc(100% - 80px);
    overflow-y: scroll;
    background: #7494c0;
}

.chatContainer .chat-unread-label {
    width: 100%;
    position: relative;
    display: block;
    color: white;
    margin: 5px;
}

.chatContainer .chat-app-user-label {
    width: 100%;
    position: relative;
    display: block;
    color: white;
}

.chatContainer .chat-date-label {
    width: 100%;
    position: relative;
    display: block;
    color: white;
    margin: 5px;
}

.chatContainer .chat-out-of-validity {
    width: 100%;
    position: relative;
    display: block;
    margin-bottom: 10px;
    border-radius: 20px;
    color: white;
    background-color: darkred;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.chatContainer .chat-left {
    width: 100%;
    position: relative;
    display: block;
    margin-bottom: 10px;
    max-width: 80%;
    clear: both;
}

.chatContainer .chat-left-icon {
    position: absolute;
    margin-top: 10px;
    top: 0;
}

.chatContainer .chat-left .chat-left-text {
    margin-left: 70px;
}

.chatContainer .chat-left .name {
    font-size: 80%;
    color: #ffffff;
    margin-bottom: 0;
}

.chatContainer .chat-left .text {
    margin: 0;
    display: inline-block;
    position: relative;
    padding: 10px;
    border-radius: 20px;
    background-color: #ffffff;
}

.chatContainer .chat-left .time {
    font-size: 80%;
    color: #ffffff;
    margin-left: 5px;
}

.chatContainer .chat-left .text::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -10px;
    top: 10px;
    border-right: 20px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* チャット自分の会話 */

.chatContainer .chat-right {
    position: relative;
    display: block;
    max-width: 80%;
    margin-bottom: 10px;
    float: right;
    clear: both;
}

.chatContainer .chat-right .chat-right-icon {
    position: absolute;
    margin-top: 10px;
    top: 0;
    right: 0;
}

.chatContainer .chat-right .chat-right-text {
    margin-right: 70px;
}

.chatContainer .chat-right .name {
    font-size: 80%;
    color: #ffffff;
    margin-bottom: 0;
}

.chatContainer .chat-right .text {
    display: inline-block;
    padding: 10px;
    position: relative;
    border-radius: 20px;
    background-color: #8de055;
}

.chatContainer .chat-right .time {
    font-size: 80%;
    color: #ffffff;
    margin-right: 5px;
}

.chatContainer .chat-right .text::after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: -10px;
    top: 10px;
    border-left: 20px solid #8de055;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* チャットルーム送信エリア */
.chatMessage-button {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 5px;
    position: relative;
}

/* チャットルームルーム説明 */
.mainContentOverview {
    min-width: 30%;
    background: whitesmoke;
    overflow-y: scroll;
    display: block;
}

/* モバイル */
@media (max-width: 767px) {
    .mainContentOverview {
        display: none;
    }
}

.chat-room-summary-text {
    width: 100%;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-top: 5px;
}

.chat-header {
    padding: 5px;
    height: 70px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.chat-header-left {
    margin-top: 5px;
    margin-bottom: 5px;
    height: 100%;
}

.chat-header-left-link {
    width: 60px;
    height: 60px;
}

.chat-header-icon-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-participate-list {
    color: black;
    font-size: 25px;
}

.chat-participate-number {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    min-width: 20px;
    padding: 0 3px;
    box-sizing: border-box;
    font-size: 10px;
}

.chat-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-header-right {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
    height: 100%;
}

.chat-header-right-dropdown {
    position: relative;
    margin-right: 15px;
    padding: 0;
    border-radius: 4px;
    border-width: 1px;
    border-color: rgb(33, 37, 41);
}

.chat-room-link {
    padding: 0;
    color: rgb(33, 37, 41);
    text-decoration: none;
}

.chat-room-info {
    position: relative;
}

.chat-room-info img {
    max-width: 100%;
    padding: 20px;
}

/* チャットルームハンバーガーメニュー */

.sideContent-hamburger_bar {
    display: block;
    width: 80%;
    height: 2px;
    position: absolute;
    left: 0;
    background: #000;
    transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.sideContent-hamburger_bar:nth-child(1) {
    top: 0;
}

.sideContent-hamburger_bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.sideContent-hamburger_bar:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

.sideContent-hamburger_bar.is_active:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
}

.sideContent-hamburger_bar.is_active:nth-child(2) {
    transform: translate(50%, -50%);
    opacity: 0;
}

.sideContent-hamburger_bar.is_active:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
}

.roomListContainer {
    display: block;
    width: 20%;
    border-right-width: 1px;
    border-right-style: solid;
    background: whitesmoke;
    height: calc(100svh - 60px);
    overflow-y: scroll;
}

/* モバイル */
@media (max-width: 767px) {
    .roomListContainer {
        display: none;
        z-index: 100;
        width: 100%;
        position: absolute;
    }
}


.roomListContainer.is_active {
    display: block !important;
}


.sideContent-hamburger {
    position: relative;
    height: 20px;
    width: 30px;
    border-style: none;
    display: none;
}

/* モバイル */
@media (max-width: 767px) {
    .sideContent-hamburger {
        display: block;
    }
}

.liveMainContents {
    flex-direction: row;
    margin: 0;
    padding: 0;
    overflow: visible;
    height: 100svh;
    width: 100%;
    justify-content: space-between;
}

/* モバイル */
@media (max-width: 767px) {
    .liveMainContents {
        flex-direction: column;
    }
}

.livePlayerArea {
    width: 100%;
    height: auto;
}

.liveHeader {
    width: 100%;
    height: 50px;
}

.liveInfoArea {
    width: 100%;
}

.videoContainer {
    height: 50%;
}

/* モバイル */
@media (max-width: 767px) {
    .videoContainer {
        height: auto;
    }
}

.videoArea {
    width: 100%;
    height: 100%;
    padding: 5px;
}

.liveCommentsComponent {
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid;
    width: 30%;
    height: 100svh;
}

/* モバイル */
@media (max-width: 767px) {
    .liveCommentsComponent {
        border-left: none;
        border-top: 1px solid;
        width: 100%;
        height: auto;
        flex-grow: 1;
    }
}

.liveCommentsComponent-commentArea {
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.liveCommentsComponent-textArea {
    flex-shrink: 0;
    flex-direction: row;
    align-items: flex-end;
}

.liveComment {
    margin: 10px;
    width: 100%;
}

.liveCommentImageArea {
    width: 40px;
}

.liveCommentImage {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.liveCommentContentArea {
    width: 80%;
    overflow-wrap: break-word;
}

.liveCommentContent {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
    max-width: 100%;
}

/* イメージモーダル */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.image-modal-content {
    text-align: center;
    background-color: white;
}

.crop-image {
    max-width: 85svw;
    max-height: 85svh;
}
