/* Mobile-first responsive design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #1a1a1a;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

#root {
    min-height: 100vh;
    width: 100%;
}

/* Loading Container */
.loading-container {
    display: flex;
    flex: 1;
    background-color: #1a1a1a;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.loading-text {
    color: #00ffcc;
    font-size: 18px;
}

/* Scroll View */
.scroll-view {
    flex: 1;
    background-color: #1a1a1a;
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.container {
    padding: 20px;
    padding-bottom: 40px;
    max-width: 100%;
    width: 100%;
}

/* Header */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}

.profile-photo {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-right: 12px;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.profile-age {
    color: #888;
    font-size: 14px;
}

.edit-button {
    padding: 8px 15px;
    background-color: #444;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
}

.edit-button-text {
    color: #00ffcc;
    font-size: 12px;
}

/* Logo and Subtitle */
.logo {
    font-size: 48px;
    color: #00ffcc;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    cursor: pointer;
}

.subtitle {
    color: #888;
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
}

/* Stay Detectable Toggle */
.stay-detectable-container {
    margin: 15px 0;
    padding: 12px;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
}

.stay-detectable-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.stay-detectable-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00ffcc;
}

.stay-detectable-label span {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

/* Buttons */
.button {
    width: 100%;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    touch-action: manipulation;
    transition: opacity 0.2s;
}

.button:active {
    opacity: 0.7;
}

.button-active {
    background-color: #ff4444;
}

.button-inactive {
    background-color: #00ffcc;
}

.button-text {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* Status Cards */
.status-card {
    background-color: #004422;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #006644;
}

.status-text {
    color: #00ffcc;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    white-space: pre-line;
}

.error-card {
    background-color: #440000;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #660000;
}

.error-text {
    color: #ff6666;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.error-hint {
    color: #ff9999;
    font-size: 11px;
    line-height: 16px;
}

/* Feed */
.feed {
    margin-top: 20px;
    width: 100%;
}

.feed-header {
    color: #00ffcc;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.empty-state-emoji {
    font-size: 60px;
    margin-bottom: 15px;
}

.empty-state-text {
    color: #666;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    white-space: pre-line;
}

/* Match Card */
.match-card {
    background-color: #333;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid #00ffcc;
    cursor: pointer;
    touch-action: manipulation;
    transition: transform 0.1s, opacity 0.1s;
}

.match-card:active {
    transform: scale(0.98);
    opacity: 0.8;
}

.match-photo-container {
    width: 100%;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
}

.match-photo {
    width: 128px;
    height: 128px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid #00ffcc;
}

.match-photo-placeholder {
    width: 128px;
    height: 128px;
    border-radius: 999px;
    background-color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #444;
}

.match-photo-placeholder-text {
    font-size: 50px;
    margin-bottom: 5px;
}

.match-photo-error-text {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

.match-distance-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 15px;
}

.match-distance-text {
    color: #00ffcc;
    font-size: 12px;
    font-weight: bold;
}

.match-delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ff6666;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    cursor: pointer;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-info {
    padding: 15px;
}

.match-name {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.match-looking-for {
    color: #00ffcc;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-bio {
    color: #aaa;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.match-interests {
    color: #888;
    font-size: 12px;
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-badge {
    background-color: #00ffcc;
    padding: 10px;
    text-align: center;
}

.match-text {
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

/* Profile Screen */
.card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
}

.label {
    color: #00ffcc;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.input {
    color: #fff;
    font-size: 16px;
    padding: 12px;
    background-color: #222;
    border-radius: 5px;
    border: 1px solid #444;
    width: 100%;
    font-family: inherit;
}

.input:focus {
    outline: none;
    border-color: #00ffcc;
}

.bio-input {
    height: 100px;
    resize: vertical;
    min-height: 100px;
}

.photo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    cursor: pointer;
    touch-action: manipulation;
}

.photo {
    width: 100%;
    height: 100%;
    border-radius: 75px;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 75px;
    background-color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #444;
}

.photo-placeholder-text {
    font-size: 40px;
    margin-bottom: 5px;
}

.photo-placeholder-subtext {
    color: #888;
    font-size: 11px;
}

.photo-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
}

.photo-button {
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    flex: 1;
    text-align: center;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
}

.photo-button-text {
    color: #fff;
    font-size: 12px;
}

.select-button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #222;
    border-radius: 5px;
    border: 1px solid #444;
    cursor: pointer;
    touch-action: manipulation;
}

.select-button-text {
    color: #fff;
    font-size: 16px;
    flex: 1;
}

.select-button-placeholder {
    color: #888;
}

.select-button-arrow {
    color: #888;
    font-size: 12px;
    margin-left: 10px;
}

.picker-container {
    background-color: #222;
    border-radius: 5px;
    border: 1px solid #444;
    margin-top: 5px;
}

.picker-option {
    padding: 15px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    touch-action: manipulation;
}

.picker-option:last-child {
    border-bottom: none;
}

.picker-option-selected {
    background-color: #004422;
}

.picker-option-text {
    color: #fff;
    font-size: 16px;
}

.picker-option-text-selected {
    color: #00ffcc;
    font-weight: bold;
}

.picker-cancel {
    padding: 15px;
    text-align: center;
    cursor: pointer;
    touch-action: manipulation;
}

.picker-cancel-text {
    color: #888;
    font-size: 14px;
}

.save-button {
    background-color: #00ffcc;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    transition: opacity 0.2s;
}

.save-button:active {
    opacity: 0.7;
}

.save-button-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.save-button-text {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* File Input Hidden */
.file-input {
    display: none;
}

/* Activity Indicator */
.activity-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design - Tablet and Desktop */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px 20px;
    }

    .logo {
        font-size: 56px;
    }

    .button {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .save-button {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 700px;
        padding: 40px 30px;
    }
}

/* Safe area for mobile devices */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }
}

/* Account screen extras */
.account-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.account-card-body {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.account-summary-line {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.account-summary-sub {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

.account-danger-zone {
    border-color: #662222;
    background-color: #2a1111;
}

.account-danger-button {
    background-color: #661b1b;
}

/* Bottom navigation */
.nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.nav-button {
    flex: 1;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #333;
    background-color: #111;
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    touch-action: manipulation;
}

.nav-button-active {
    background: linear-gradient(135deg, #00ffcc, #00c0ff);
    border-color: transparent;
    color: #000;
}

/* Landing page */
.landing {
    min-height: 100vh;
    background: radial-gradient(circle at top, #00ffcc33 0, transparent 55%), #050608;
    color: #fff;
}

.landing-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.5);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00ffcc;
    margin-bottom: 16px;
}

.landing-hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 800;
    text-align: left;
}

.landing-hero-highlight {
    color: #00ffcc;
}

.landing-hero-subtitle {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.landing-cta-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 24px;
}

.landing-cta-primary {
    flex: 1;
    background: linear-gradient(135deg, #00ffcc, #00c0ff);
    color: #000;
    border-radius: 999px;
    border: none;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    touch-action: manipulation;
}

.landing-cta-secondary {
    flex: 1;
    background: transparent;
    color: #00ffcc;
    border-radius: 999px;
    border: 1px solid #00ffcc44;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    touch-action: manipulation;
}

.landing-meta {
    font-size: 11px;
    color: #666;
    margin-bottom: 32px;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.landing-feature-card {
    background: #111;
    border-radius: 12px;
    border: 1px solid #222;
    padding: 14px 14px 16px;
}

.landing-feature-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.landing-feature-body {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .landing-inner {
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .landing-hero-title {
        font-size: 42px;
    }

    .landing-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .landing-pricing-title {
        font-size: 32px;
    }
}

/* Pricing section */
.landing-pricing-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #222;
}

.landing-pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.landing-pricing-subtitle {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 32px;
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.landing-pricing-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.landing-pricing-card-pro {
    border: 2px solid #00ffcc;
    background: linear-gradient(135deg, #111 0%, #1a2a2a 100%);
}

.landing-pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #00ffcc, #00c0ff);
    color: #000;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-pricing-plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.landing-pricing-plan-price {
    font-size: 36px;
    font-weight: 800;
    color: #00ffcc;
    margin-bottom: 4px;
}

.landing-pricing-plan-period {
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
}

.landing-pricing-plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.landing-pricing-feature {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.landing-pricing-feature-disabled {
    color: #666;
    text-decoration: line-through;
}

.landing-pricing-upgrade-button {
    width: 100%;
    background: linear-gradient(135deg, #00ffcc, #00c0ff);
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    touch-action: manipulation;
    transition: transform 0.2s, opacity 0.2s;
}

.landing-pricing-upgrade-button:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.landing-pricing-upgrade-button:active {
    transform: scale(0.98);
}

/* Match details modal */
.match-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.match-modal {
    background: #101010;
    border-radius: 18px;
    border: 1px solid #222;
    max-width: 360px;
    width: 90%;
    padding: 20px 20px 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.match-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.match-modal-title {
    font-size: 18px;
    font-weight: 700;
}

.match-modal-close {
    background: transparent;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    touch-action: manipulation;
}

.match-modal-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.match-modal-row {
    font-size: 13px;
    color: #ddd;
    line-height: 1.5;
}

.match-modal-label {
    font-weight: 600;
    color: #00ffcc;
    margin-right: 4px;
}

.match-modal-meta {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.match-modal-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.match-modal-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid #00ffcc;
}

.match-modal-message-button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: #00ffcc;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
}

.match-modal-message-button:active {
    opacity: 0.8;
}

.match-message-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
    background: #00ffcc;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
}

.match-message-button:active {
    opacity: 0.8;
}

/* Chat Screen Styles */
.chat-screen {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    background: #1a1a1a;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #2a2a2a;
    border-bottom: 1px solid #3a3a3a;
    gap: 12px;
}

.chat-back-button {
    background: transparent;
    border: none;
    color: #00ffcc;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    touch-action: manipulation;
}

.chat-title {
    font-size: 18px;
    font-weight: 700;
    flex: 1;
}

.chat-partner-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.chat-partner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-partner-name {
    font-size: 16px;
    font-weight: 600;
}

.chat-loading {
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

.chat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.chat-empty-emoji {
    font-size: 60px;
    margin-bottom: 15px;
}

.chat-empty-text {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line;
}

.chat-conversations {
    flex: 1;
    overflow-y: auto;
}

.chat-conversation-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a2a;
    cursor: pointer;
    gap: 12px;
    transition: background 0.2s;
}

.chat-conversation-item:active {
    background: #2a2a2a;
}

.chat-conversation-item.chat-unread {
    background: #1f2a1f;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.chat-conversation-content {
    flex: 1;
    min-width: 0;
}

.chat-conversation-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.chat-conversation-preview {
    font-size: 13px;
    color: #888;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-conversation-time {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}

.chat-unread-badge {
    background: #00ffcc;
    color: #000;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    word-wrap: break-word;
}

.chat-message-own {
    align-self: flex-end;
    align-items: flex-end;
}

.chat-message-other {
    align-self: flex-start;
    align-items: flex-start;
}

.chat-message-content {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}

.chat-message-own .chat-message-content {
    background: #00ffcc;
    color: #000;
    border-bottom-right-radius: 4px;
}

.chat-message-other .chat-message-content {
    background: #2a2a2a;
    color: #fff;
    border-bottom-left-radius: 4px;
}

.chat-message-time {
    font-size: 10px;
    color: #666;
    margin-top: 4px;
    padding: 0 4px;
}

.chat-input-container {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.chat-input:focus {
    border-color: #00ffcc;
}

.chat-send-button {
    padding: 10px 20px;
    background: #00ffcc;
    color: #000;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
}

.chat-send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send-button:active:not(:disabled) {
    opacity: 0.8;
}

.chat-total-count {
    font-size: 11px;
    color: #888;
    background: #2a2a2a;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
}
