* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.4;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #000000;
    min-height: 100vh;
}

/* Header */
.header {
    padding: 16px;
   
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}

/* New Post Section */
.new-post-section {
    padding: 16px;
    border-bottom: 1px solid #262626;
    background-color: #181818;
    border-radius: 13px 13px 0 0;
}

.new-post-container {
    display: flex;
    align-items: center;
    gap: 12px;
   
}

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

.new-post-content {
    flex: 1;
}

.new-post-text {
    color: #8e8e8e;
    font-size: 16px;
    cursor: pointer;
}

.write-button {
    height: 38px;
    border: 1px solid #383939;
    background-color: #262626;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.write-button:hover {
    background-color: #404040;
}

/* Feed */
.feed {
    background-color: #000000;
}

/* Post */
.post {
    border-bottom: 1px solid #262626;
    padding: 16px;
    background-color: #181818;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.post-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.post-user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.username {
    font-weight: 600;
    color: #99C3FF;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.username:hover {
    color: #007AFF;
}

.timestamp {
    color: #8e8e8e;
    font-size: 12px;
}

.post-menu {
    background: none;
    border: none;
    color: #B3B3B3;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.post-menu:hover {
    background-color: #262626;
}

/* Post Content */
.post-content {
    margin-bottom: 0px;
}

.post-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Post Media - Carousel - Updated 2024-12-19: Simple horizontal scroll like in modal */
.post-media {
    position: relative;
    margin-bottom: 0px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #181818;
}

.media-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0px;
    scroll-behavior: smooth;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.media-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.media-item {
    flex: 0 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.media-item img {
    height: 300px;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s ease;
    /* Width will be set by JavaScript based on orientation */
}

/* Auto-detect image orientation and set appropriate width */
.media-item img[width] {
    width: auto;
}

/* Ensure carousel items don't shrink */
.media-item {
    min-width: 0;
    flex-shrink: 0;
}

.media-item:hover img {
    transform: scale(1.02);
}

/* Media Controls - Only in modal, not in posts */
.media-controls {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 8px;
}

.media-remove {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background-color 0.2s;
}

.media-remove:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Carousel navigation removed - Updated 2024-12-19: No more arrows needed */

/* Media Captions - Exact as screenshot */
.media-caption {
    padding: 12px 0px;
    
    border-radius: 0 0 8px 8px;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
}
/* Removed duplicate carousel-nav style */

.media-caption-line {
    color: #8A8A8E;
    margin-bottom: 4px;
}

.media-caption-line:last-child {
    margin-bottom: 0;
}

.media-caption-link {
    color: #99C3FF;
    text-decoration: none;
}

.media-caption-link:hover {
    text-decoration: underline;
}

.media-caption-label {
    color: #8e8e8e;
}

.media-caption-value {
    color: #ffffff;
}

/* Game Details */
.game-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.game-detail-item {
    background-color: #262626;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Post Actions */
.post-actions {
    display: flex;
    gap: 16px;
}

.action-btn {
    background: none;
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s;
}

.action-btn:hover {
    color: #ffffff;
}

.action-btn i {
    font-size: 16px;
}

/* SVG icon styles - Updated 2024-12-19: Added report icon */
.action-btn img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    width: 670px;
    max-height: none;
    overflow: visible;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Modal sizes - Updated 2024-12-19: All modals grow with content, no scroll */
.modal-small {
    height: auto;
    min-height: 250px;
    max-height: none;
}

.modal-medium {
    height: auto;
    min-height: 400px;
}

.modal-large {
    height: auto;
   
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #262626;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    flex: 1;
}

/* Modal wrapper for external close button - Updated 2024-12-19: Transparent wrapper to contain close button */
.modal-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

/* External modal close button - Updated 2024-12-19: Positioned outside modal on the right */
.modal-close-external {
    position: absolute;
    right: -50px;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: rgba(28, 28, 28, 0.8);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1001;
}

.modal-close-external:hover {
    background-color: rgba(28, 28, 28, 0.6);
}

.modal-close-external svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.modal-close {
    background: none;
    border: none;
    color: #8e8e8e;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: #262626;
}

.modal-body {
    padding: 16px;
    flex: 1;
    overflow-y: visible;
}

.modal-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.modal-username {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

.post-textarea {
    width: 100%;
    min-height: 25px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.4;
    resize: none;
    outline: none;
    margin-bottom: 16px;
}

.post-textarea::placeholder {
    color: #8e8e8e;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.media-add-btn {
    background: none;
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.media-add-btn:hover {
    background-color: #262626;
    color: #ffffff;
}

.media-add-btn i {
    font-size: 16px;
    color: #8e8e8e;
}

.media-add-btn:hover i {
    color: #0095f6;
}

/* Media Upload in Modal */
.media-upload {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    overflow-y: visible;
}

.media-item-upload {
    position: relative;
    width: auto;
    height: auto;
    min-height: 260px;
    border-radius: 8px;
    overflow: visible;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 0;
}

.media-item-upload img {
    width: auto;
    min-width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #262626;
}

.media-remove-upload {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background-color 0.2s;
}

.media-remove-upload:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* upload-btn styles removed - Updated 2024-12-19: No more upload button needed */

/* Screenshot info button under each image */
.screenshot-info-btn {
    position: relative;
    display: block;
    margin-top: 11px;
    margin-left: 3px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ffffff;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
}

/* Media caption in modal - same style as on main page */
.media-item-upload .media-caption {
    padding: 12px 0px 12px 4px;
   
    border-radius: 0 0 8px 8px;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
    margin-top: 11px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.media-item-upload .media-caption:hover {
    background-color: #262626;
}

.media-item-upload .media-caption-line {
    color: #8A8A8E;
    margin-bottom: 4px;
}

.media-item-upload .media-caption-line:last-child {
    margin-bottom: 0;
}

/* Close button in caption */
.caption-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #8e8e8e;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.caption-close-btn:hover {
    background-color: #404040;
    color: #ffffff;
}

.screenshot-info-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.screenshot-info-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(1.2);
}

.post-options {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.option-btn {
    background: none;
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    background-color: #262626;
    border: 1px solid #404040;
}

.option-btn:hover {
    background-color: #404040;
    color: #ffffff;
    border-color: #0095f6;
}

.option-btn img {
    width: 16px;
    height: 16px;
    color: #8e8e8e;
}

.option-btn:hover img {
    filter: brightness(1.2);
}

.game-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 12px;
    color: #8e8e8e;
}

.form-input, .form-select {
    background-color: #262626;
    border: 1px solid #404040;
    border-radius: 4px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 14px;
}

.form-select {
    padding-right: 26px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238e8e8e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #0095f6;
}

.add-game-btn {
    background-color: #0095f6;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-game-btn:hover {
    background-color: #0081d6;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #262626;
}

.share-btn {
    background-color: #007AFF;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.share-btn:hover {
    background-color: #0081d6;
}

.share-btn:disabled {
    background-color: #404040;
    color: #8e8e8e;
    cursor: not-allowed;
}

/* Special styles for first modal state */
.modal-small .option-btn {
    background: none;
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-small .option-btn:hover {
    background-color: #262626;
    color: #ffffff;
}

.modal-small .option-btn i {
    font-size: 16px;
    color: #8e8e8e;
}

.modal-small .option-btn:hover i {
    color: #0095f6;
}

.modal-small .share-btn {
    width: 116px;
    height: 38px;
    background: none;
    color: #ffffff;
    border: 1px solid #383939;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.modal-small .share-btn:hover {
    background-color: #262626;
    border-color: #0095f6;
}

.modal-small .share-btn:disabled {
    background-color: #262626;
    color: #8e8e8e;
    border-color: #404040;
    cursor: not-allowed;
}

/* Styles for medium modal state */
.modal-medium .option-btn {
    background: none;
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-medium .option-btn:hover {
    background-color: #262626;
    color: #ffffff;
}

.modal-medium .option-btn i {
    font-size: 16px;
    color: #8e8e8e;
}

.modal-medium .option-btn:hover i {
    color: #0095f6;
}

.modal-medium .share-btn {
    width: 116px;
    height: 38px;
    background: none;
    color: #ffffff;
    border: 1px solid #383939;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.modal-medium .share-btn:hover {
    background-color: #262626;
    border-color: #0095f6;
}

.modal-medium .share-btn:disabled {
    background-color: #262626;
    color: #8e8e8e;
    border-color: #404040;
    cursor: not-allowed;
}

/* Styles for large modal state */
.modal-large .option-btn {
    background: none;
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-large .option-btn:hover {
    background-color: #262626;
    color: #ffffff;
}

.modal-large .option-btn i {
    font-size: 16px;
    color: #8e8e8e;
}

.modal-large .option-btn:hover i {
    color: #0095f6;
}

.modal-large .share-btn {
    width: 116px;
    height: 38px;
    background: none;
    color: #ffffff;
    border: 1px solid #383939;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.modal-large .share-btn:hover {
    background-color: #262626;
    border-color: #0095f6;
}

.modal-large .share-btn:disabled {
    background-color: #262626;
    color: #8e8e8e;
    border-color: #404040;
    cursor: not-allowed;
}

/* Game form styles - Updated 2024-12-19: Align width with carousel */
.game-form {
    position: relative;
    border-radius: 8px;
   
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
    display: none;
    width: 100%;
    max-width: 100%;
}

.game-form.show {
    display: block;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.form-row .form-group:last-child {
    flex: 0 0 auto;
}

.form-row-large {
    width: 100%;
    margin-bottom: 10px;
}

.form-row-large .form-group {
    flex: 1;
    width: 50%;
}

.form-row-small {
    width: 100%;
    gap: 6px;
    display: flex;
    margin-bottom: 8px;
}

.form-row-small:last-child {
    margin-bottom: 0;
}

.form-row-small .form-group {
    flex: 1;
}

.form-row-small .form-group:last-child {
    flex: 0 0 auto;
    width: 100px;
}

.add-game-btn {
    background-color: #383939;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    height: 35px;
    width: 100%;
}

.add-game-btn:hover {
    background-color: #404040;
}

.close-form-btn {
    position: absolute;
    top: -32px;
    right: 0;
    background: none;
    border: none;
    color: #8e8e8e;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.close-form-btn:hover {
    background-color: #404040;
    color: #ffffff;
}

/* Profile Page Styles */
.profile-header {
    padding: 24px 16px;
    border-bottom: 1px solid #262626;
    background-color: #000000;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-details h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.profile-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.stat-label {
    font-size: 12px;
    color: #8e8e8e;
}

.profile-bio {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.profile-actions {
    display: flex;
    gap: 8px;
}

.profile-btn {
    flex: 1;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.edit-btn {
    background-color: #262626;
    color: #ffffff;
    border: 1px solid #404040;
}

.edit-btn:hover {
    background-color: #404040;
}

.share-profile-btn {
    background-color: #007AFF;
    color: #ffffff;
    border: none;
}

.share-profile-btn:hover {
    background-color: #0081d6;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    .post-media {
        flex-direction: column;
    }
    
    .game-form {
        grid-template-columns: 1fr;
    }
    
    .media-upload {
        gap: 4px;
    }
    
    .media-item-upload,
    .upload-btn {
        width: 150px;
        height: 120px;
    }
}

/* Like button styles - Updated 2024-12-19: Using custom SVG icons */
.action-btn.liked .like-icon {
    content: url('likeA.svg');
}

.action-btn:not(.liked) .like-icon {
    content: url('likeU.svg');
}

/* Ensure proper icon display */
.like-icon {
    display: inline-block;
    vertical-align: middle;
}

.action-btn.liked span {
    color: #FF1F44;
}

.action-btn:not(.liked) span {
    color: #8e8e8e;
}

/* Icon sizing - Updated 2024-12-19: Added report icon */
.like-icon, .comment-icon, .report-icon {
    width: 16px;
    height: 16px;
}

/* Screenshot Modal Styles */
.screenshot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.screenshot-modal-content {
    background-color: #000000;
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.screenshot-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 20px;
}

.screenshot-close {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.screenshot-close:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.screenshot-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.screenshot-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.screenshot-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

/* Responsive for screenshot modal */
@media (max-width: 768px) {
    .screenshot-body {
        padding: 10px;
    }
    
    .screenshot-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 12px;
    }
    
    .screenshot-header {
        padding: 15px;
    }
    
    .screenshot-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Responsive for main modal - ensure it grows on all resolutions */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        margin: 20px;
    }
    
    .modal-body {
        padding: 12px;
    }
}

/* Report Modal Styles - Updated 2024-12-19: Report modal with external close button */
.report-modal {
    width: 600px;
    max-width: 90vw;
    background-color: #181818 !important;
}

.report-modal .modal-header {
    border-bottom: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #8e8e8e;
    font-size: 14px;
    margin-top: 17px;
    margin-bottom: 0;
}

.report-reasons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.report-reason {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.report-reason:hover {
    background-color: #262626;
}

.report-reason.selected {
    background-color: #404040;
}

.report-reason span {
    flex: 1;
    line-height: 1.4;
}

.report-reason i {
    color: #8e8e8e;
    font-size: 14px;
}



/* Confirmation Modal Styles - Updated 2024-12-19: Success message with Done button */
.confirmation-modal {
    width: 600px;
    height: 335px;
    max-width: 90vw;
    text-align: center;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.confirmation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 30px 0 30px;
    flex: 1;
}

.success-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.confirmation-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.confirmation-text {
    color: #B3B3B3;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    max-width: 540px;
    padding: 0 30px;
}

.done-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 30px 30px 40px 30px;
    height: 49px;
    width: calc(100% - 60px);
}

.done-btn:hover {
    background-color: #f0f0f0;
}
