.store__tweet-form {
    margin-top: 24px;
}
.tweet-button{
    padding-top: 20px;
    padding-bottom: 1px;
}
.button_bottom {
    max-width: 300px;
    margin: 0 auto 15px auto;
}
.store__tweet-content {
    background-color: #fff;
    border-radius: 4px;
}

.store__tweet-content .store__tweet-content-action {
    position: relative;
    min-height: 40px;
    border-radius: 4px;
    padding: 8px;
}

.store__tweet-content textarea {
    overflow: hidden;
    resize: none;
    padding: 4px 12px 4px 12px;
}

.store__tweet-content textarea:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.store__tweet-content .store__tweet-image-preview {
    padding-bottom: 40px;
    position: relative;
    flex: 0 0 auto;
}

.store__tweet-content .store__tweet-image-preview .store__tweet-remove-image {
    position: absolute;
    left: 90px;
    top: -8px;
    border: 1px solid #EA91B8;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.store__tweet-content .store__tweet-image-preview .store__tweet-remove-image img {
    width: 7px;
    height: 7px;
}

.store__tweet-content .preview_image {
    width: 100px;
    border-radius: 4px;
}

.store__tweet-content .store__tweet-upload-image {
    position: absolute;
    bottom: 8px;
    left: 8px;
}

.store__tweet-content .store__tweet-upload-image img {
    @media only screen and (min-width: 1024px) {
        width: 20px;
    }
}

.store__tweet-content .store__tweet-send {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: #EB92B9;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store__tweet-image-preview-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-top: 20px;
}

.store__tweet-image-preview-list::-webkit-scrollbar {
    display: none;
}

.store__tweet-content .store__tweet-send:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}


.store__tweet-content .store__tweet-send img {
    width: 16px;
    height: 16px;
}

.store__tweet-content .store__tweet-content-count {
    position: absolute;
    bottom: 8px;
    right: 48px;
    color: #e85892;
}
.store__tweet-list {
    margin-top: 32px;
}

.store__tweet-list h4 {
    color: #EB92B9;
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.store__tweet-list-table .store__tweet-list-component {
    border: 1px solid #EB92B9;
    background-color: #FFF;
    border-radius: 12px;
    position: relative;
    padding: 16px 16px 34px;
    margin-bottom: 16px;
}

.store__tweet-list-component-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 8px;
}

.store__tweet-list-component-title {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    width: 100%;
    @media only screen and (min-width: 1024px) {
        font-size: 18px;
    }
}

.store__tweet-list-component-date {
    color: #EFB7CD;
    font-size: 8px;
    font-weight: 500;
    white-space: nowrap;
    min-width: fit-content;
    @media only screen and (min-width: 1024px) {
        font-size: 12px;
    }
}

.pink-dots {
    border-bottom: 3px dotted #EFB7CD;
    width: 100%;
    margin-bottom: 16px;
}

.store__tweet-list-component-content {
    font-size: 11px;
    @media only screen and (min-width: 1024px) {
        font-size: 15px;
    }
}

.store__tweet-list-component-images {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-top: 20px;
}

.store__tweet-list-component-images::-webkit-scrollbar {
    display: none;
}

.store__tweet-list-component-images img {
    height: 123px;
    flex: 0 0 auto;
    width: auto;
    cursor: pointer;
    border-radius: 4px;
}

.store__tweet-list-component-delete {
    position: absolute;
    width: 12px;
    bottom: 12px;
    right: 16px;
    cursor: pointer;
    @media only screen and (min-width: 1024px) {
        width: 16px;
    }
}

.deleteConfirm {
    padding: 24px 0;
    gap: 4px;
    @media only screen and (min-width: 1024px) {
        gap: 8px;
    }
}

.deleteConfirm button, .deleteConfirm a{
    max-width: 200px;
    width: 100%;
}
.previewModal {
    position: fixed;
    inset: 0;
    background:rgba(0,0,0,.7);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index: 9999;
}
.previewModal img {
    max-width: 50%;
    max-height: 80dvh;
    object-fit: contain;
    touch-action: pan-y;
    @media only screen and (max-width: 768px) {
        max-width: 90%;
    }
}

.prevIcon, .nextIcon {
    position: fixed;
    z-index: 1;
    padding: 16px;
    cursor: pointer;
    display: block;
    @media only screen and (max-width: 768px) {
        display: none;
    }
}
.prevIcon img, .nextIcon img {
    width: 52px;
    height: 52px;
}
.prevIcon {
    left: 0;
    transform: rotate(90deg);
}

.nextIcon {
    right: 0;
    transform: rotate(-90deg);
}
