* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Remove blue tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for input, textarea, and content areas */
input,
textarea,
[contenteditable],
.caption-text,
.post-caption,
p {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Ensure all interactive elements have no tap highlight */
a, button, input, textarea, select, .nav-item, .sidebar-item, .action-btn, .toggle-btn {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

/* Hide scrollbar for all elements */
*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

:root {
    --primary-color: #000000;
    --primary-hover: #333333;
    --text-primary: #000000;
    --text-secondary: #666666;
    --bg-color: #ffffff;
    --bg-secondary: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --icon-filter: none;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #ffffff;
        --primary-hover: #cccccc;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --bg-color: #000000;
        --bg-secondary: #000000;
        --border-color: #333333;
        --shadow: 0 1px 3px 0 rgba(255, 255, 255, 0.1);
        --shadow-md: 0 4px 6px -1px rgba(255, 255, 255, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
        --icon-filter: invert(1);
    }
}

/* Explicit theme override via data-theme (user preference) */
:root[data-theme="light"] {
    --primary-color: #000000;
    --primary-hover: #333333;
    --text-primary: #000000;
    --text-secondary: #666666;
    --bg-color: #ffffff;
    --bg-secondary: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --icon-filter: none;
}

:root[data-theme="dark"] {
    --primary-color: #ffffff;
    --primary-hover: #cccccc;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --bg-color: #000000;
    --bg-secondary: #000000;
    --border-color: #333333;
    --shadow: 0 1px 3px 0 rgba(255, 255, 255, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
    --icon-filter: invert(1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding-top: 60px;
    padding-bottom: 70px;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-y: scroll;
    scrollbar-width: none;
}

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

@media (min-width: 769px) {
    body {
        padding-left: 250px;
        padding-bottom: 0;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Toggle Buttons Section - Instagram 2025 Style (in base.html) */
.explore-toggle-section {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.explore-toggle-section::-webkit-scrollbar {
    display: none;
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.toggle-btn i {
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.toggle-btn span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

.toggle-btn:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
}

.toggle-btn:active {
    transform: scale(0.96);
}

.toggle-btn.active {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
}

.toggle-btn.active i,
.toggle-btn.active span {
    color: var(--bg-color);
}

/* Dark mode toggle buttons */
@media (prefers-color-scheme: dark) {
    .toggle-btn i {
        color: var(--text-primary);
    }
    
    .toggle-btn:hover:not(.active) {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .toggle-btn:hover:not(.active) i {
        color: var(--text-primary);
    }
    
    .toggle-btn.active {
        background-color: #ffffff;
        border-color: #ffffff;
    }
    
    .toggle-btn.active i,
    .toggle-btn.active span {
        color: #000000;
    }
}

/* Adjust body padding when toggle buttons are visible */
body:has(.explore-toggle-section) {
    padding-top: 116px; /* 60px header + 56px toggle section */
}

/* Mobile toggle buttons */
@media (max-width: 768px) {
    .explore-toggle-section {
        padding: 10px 12px;
        gap: 6px;
        left: 0;
    }
    
    .toggle-btn {
        padding: 8px 16px;
        gap: 5px;
        flex: 1;
        min-width: 0;
    }
    
    .toggle-btn i {
        font-size: 15px;
    }
    
    .toggle-btn span {
        font-size: 13px;
    }
    
    body:has(.explore-toggle-section) {
        padding-top: 116px;
    }
}

/* Desktop adjustments for toggle buttons */
@media (min-width: 769px) {
    .explore-toggle-section {
        left: 250px; /* Account for sidebar */
    }
    
    .toggle-btn {
        flex: 1;
        min-width: 0;
        padding: 10px 24px;
    }
}

/* Large desktop screens */
@media (min-width: 1200px) {
    .toggle-btn {
        padding: 12px 32px;
    }
    
    .toggle-btn i {
        font-size: 17px;
    }
    
    .toggle-btn span {
        font-size: 15px;
    }
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.header-logo img {
    height: 35px;
    width: 35px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .header-logo img {
        filter: invert(1);
    }
}

.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.header-search input:focus {
    background-color: var(--bg-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.header-search input::placeholder {
    color: var(--text-secondary);
}

/* Prevent autofill/paste from changing background color */
.header-search input:-webkit-autofill,
.header-search input:-webkit-autofill:hover,
.header-search input:-webkit-autofill:focus,
.header-search input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--text-primary);
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 0 1000px var(--bg-secondary);
}

/* Global input autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--text-primary) !important;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 0 1000px transparent !important;
    background-color: transparent !important;
}

.header-search img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    opacity: 0.5;
    filter: var(--icon-filter);
    transition: filter 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 769px) {
    .header-actions {
        display: flex;
    }
}

.header-icon {
    height: 24px;
    width: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: var(--icon-filter);
}

.header-icon:hover {
    opacity: 1;
}

.header-profile {
    height: 30px;
    width: 30px;
    cursor: pointer;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

@media (prefers-color-scheme: dark) {
    .header-profile {
        filter: invert(1) brightness(2);
    }
}

.header-profile:hover {
    opacity: 1;
}

/* Mobile Navigation Bar */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 11px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-item:hover {
    color: var(--primary-color);
}

.nav-item img {
    height: 24px;
    width: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: var(--icon-filter);
}

.nav-item img.user-avatar {
    border-radius: 50%;
    object-fit: cover;
    filter: none; /* don't invert real profile photos in dark mode */
    opacity: 1;
    border: 1px solid var(--border-color);
}

.nav-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Desktop Sidebar */
.desktop-sidebar {
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 250px;
    background-color: var(--bg-color);
    border-right: 1px solid var(--border-color);
    padding: 20px 0;
    overflow-y: auto;
    z-index: 999;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: none;
}

@media (min-width: 769px) {
    .desktop-sidebar {
        display: block;
    }
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-item,
.nav-item {
    position: relative;
}

.sidebar-item:hover {
    background-color: var(--bg-secondary);
}

/* Remove active indicator - clean look like mobile */
.sidebar-item.active {
    /* No special styling for active state */
}

.sidebar-item.active span {
    /* No special styling for active state */
}

.sidebar-item img {
    width: 24px;
    height: 24px;
    filter: var(--icon-filter);
    transition: filter 0.3s ease;
}

.sidebar-item img.user-avatar {
    border-radius: 50%;
    object-fit: cover;
    filter: none; /* don't invert real profile photos in dark mode */
    border: 1px solid var(--border-color);
}

.messages-unread-badge {
    position: absolute;
    top: 6px;
    right: 11.5px;
    background-color: transparent;
    color: var(--text-primary);
    font-size: 7px;
    font-weight: 700;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border: 1.5px solid var(--text-primary);
    line-height: 1;
}

/* Desktop sidebar badge positioning */
.sidebar-item .messages-unread-badge {
    top: 8px;
    right: 14.5px;
}

/* Mobile nav badge positioning - top right of icon */
.mobile-nav .nav-item {
    position: relative;
}

.mobile-nav .messages-unread-badge {
    top: 2px;
    right: 7.5px;
}

/* Notification badge styling - matching messages badge style */
.notification-unread-badge {
    position: absolute;
    top: 6px;
    right: 11.5px;
    background-color: transparent;
    color: var(--text-primary);
    font-size: 7px;
    font-weight: 700;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border: 1.5px solid var(--text-primary);
    line-height: 1;
}

/* Header notification badge positioning - top right of icon */
.header-actions a .notification-unread-badge {
    top: -2px;
    right: -2.5px;
}

/* Desktop sidebar notification badge positioning */
.sidebar-item .notification-unread-badge {
    top: 8px;
    right: 14.5px;
}

/* Main Content Area */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 1024px) {
    .main-content {
        padding: 20px 0;
    }
}

/* Feed Container */
.feed-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Stories Section */
.stories-section {
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
    .stories-section {
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

.stories-section::-webkit-scrollbar {
    display: none;
}

.stories-container {
    display: flex;
    gap: 15px;
    min-width: min-content;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 70px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: var(--icon-filter);
    transition: filter 0.3s ease;
}

.story-name {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Video Post Card */
.video-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
    .video-card {
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

.video-card:hover {
    box-shadow: var(--shadow-md);
}

/* Post Header */
.post-header {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 12px;
}

.post-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    filter: var(--icon-filter);
    transition: filter 0.3s ease;
}

.post-info {
    flex: 1;
}

.post-author {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    width: 16px;
    height: 16px;
    filter: var(--icon-filter);
    transition: filter 0.3s ease;
}

.post-time {
    font-size: 13px;
    color: var(--text-secondary);
}

.post-menu {
    cursor: pointer;
    font-size: 20px;
    color: var(--text-secondary);
    padding: 5px 10px;
}

/* Video Player */
.video-container {
    position: relative;
    background-color: var(--bg-secondary);
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--primary-hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #ffffff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Post Actions */
.post-actions {
    display: flex;
    padding: 12px 15px;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.action-btn:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.action-btn img {
    width: 22px;
    height: 22px;
    opacity: 0.7;
    filter: var(--icon-filter);
    transition: all 0.3s ease;
}

.action-btn:hover img {
    opacity: 1;
}

.action-btn.liked {
    color: var(--primary-color);
}

.action-btn.liked img {
    opacity: 1;
    filter: none;
}

/* Post Caption */
.post-caption {
    padding: 15px;
}

.caption-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.view-comments {
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    margin-top: 8px;
}

.view-comments:hover {
    color: var(--primary-color);
}

/* Quick Navigation Pills */
.nav-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 5px 0;
}

@media (max-width: 1024px) {
    .nav-pills {
        padding: 5px 15px;
    }
}

.nav-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    padding: 8px 16px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.pill:hover,
.pill.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-search {
        max-width: 300px;
        margin: 0 10px;
    }

    .header-logo span {
        display: none;
    }

    .header-actions {
        gap: 6px;
        padding-right: 0;
    }

    .header-icon {
        height: 22px;
        width: 22px;
    }

    .main-content {
        padding: 15px 0;
    }

    .stories-section {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 0;
    }

    .video-card {
        border-radius: 0;
        margin-bottom: 15px;
    }

    .post-actions {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 12px;
    }

    .header-search {
        margin: 0 5px;
    }

    .header-search input {
        padding: 8px 35px 8px 35px;
        font-size: 13px;
    }

    .header-actions {
        gap: 4px;
        padding-right: 0;
    }

    .header-actions > .header-icon:not(:last-child) {
        display: none;
    }

    .nav-item {
        font-size: 10px;
        padding: 6px 8px;
    }

    .nav-item img {
        height: 22px;
        width: 22px;
    }
}

/* Desktop - Hide mobile nav */
@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--bg-color);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    max-width: 90%;
    border: 1px solid var(--border-color);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification i {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-notification span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success i {
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error i {
    color: #ef4444;
}

.toast-warning {
    border-left: 4px solid #f59e0b;
}

.toast-warning i {
    color: #f59e0b;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info i {
    color: #3b82f6;
}

/* Confirmation Modal Styles */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.confirm-modal.show {
    opacity: 1;
}

.confirm-modal-content {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.confirm-modal.show .confirm-modal-content {
    transform: scale(1);
}

.confirm-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirm-modal-icon i {
    font-size: 32px;
    color: #ef4444;
}

.confirm-modal-message {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.prompt-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.2s ease;
}

.prompt-input:focus {
    border-color: var(--primary-color);
}

.confirm-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-btn-cancel {
    background: var(--border-color);
    color: var(--text-primary);
}

.confirm-btn-cancel:hover {
    background: var(--text-secondary);
}

.confirm-btn-confirm {
    background: #ef4444;
    color: white;
}

.confirm-btn-confirm:hover {
    background: #dc2626;
}

@media (max-width: 768px) {
    .toast-notification {
        top: 70px;
        min-width: 200px;
        padding: 12px 16px;
    }
    
    .toast-notification span {
        font-size: 13px;
    }
    
    .confirm-modal-content {
        padding: 24px;
    }
    
    .confirm-modal-message {
        font-size: 15px;
    }
}

