body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
/*    background-color: #f0f0f0;*/
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
/*     background-color: white;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    border-radius: 10px;
    
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 18px;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.social-media-icons {
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.scroll-container {
    display: flex;
    align-items: center;
    width: max-content;
}

.icon {
    display: inline-block;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
    opacity: 0.1; /* 设置透明度为0.8 */
}
.icon.active {
    opacity: 1; /* 设置透明度为0.8 */
}

.icon img {
    width: 52px;
    height: 52px;
}

.icon span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.instruction-image {
    position: relative;
    margin-top: 20px;
}

.instruction-image img {
    width: 100%;
    border-radius: 10px;
}

.label {
    position: absolute;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.feeds {
    top: 20%;
    left: 10%;
    background-color: #ff1493;
}

.reels {
    top: 20%;
    right: 10%;
    background-color: #1e90ff;
}

.instruction-text {
    margin-top: 20px;
    text-align: center;
}

.highlight {
    color: #007bff;
    font-weight: bold;
}

.next-btn-container {
    text-align: center;
    margin-top: 20px;
}

.next-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.social-media-icons::-webkit-scrollbar {
    display: none; /* Hide scrollbars for Chrome, Safari, and Opera */
}

.social-media-icons {
    -ms-overflow-style: none;  /* Hide scrollbars for Internet Explorer and Edge */
    scrollbar-width: none;  /* Hide scrollbars for Firefox */
}
