/* EndorseHQ Frontend Dashboard Styles */

/* Reset and base styles */
.endorsehq-dashboard * {
    box-sizing: border-box;
}

.endorsehq-dashboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Dashboard wrapper */
.endorsehq-dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Navigation sidebar */
.endorsehq-dashboard-nav {
    width: 280px;
    background: #2c3e50;
    color: white;
    flex-shrink: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    padding: 20px;
    border-bottom: 1px solid #34495e;
    background: #1a252f;
}

.dashboard-logo h1 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
}

.dashboard-logo h1 a {
    color: #3498db;
    text-decoration: none;
}

.dashboard-logo h1 a:hover {
    color: #2980b9;
}

.business-name {
    font-size: 14px;
    color: #bdc3c7;
    display: block;
}

.user-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #34495e;
    font-size: 14px;
}

.welcome {
    display: block;
    color: #ecf0f1;
    margin-bottom: 8px;
}

.logout-link {
    color: #e74c3c;
    text-decoration: none;
    font-size: 13px;
}

.logout-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Navigation menu */
.dashboard-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard-menu li {
    border-bottom: 1px solid #34495e;
}

.dashboard-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dashboard-menu a:hover {
    background: #34495e;
    color: #ecf0f1;
}

.dashboard-menu a.active {
    background: #3498db;
    color: white;
}

.dashboard-menu .dashicons {
    margin-right: 10px;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Main content area */
.endorsehq-dashboard-main {
    flex: 1;
    padding: 0;
    overflow-x: auto;
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 30px 30px 30px;
}

/* Dashboard header section */
.dashboard-header-section {
    margin-bottom: 30px;
}

.dashboard-header-section h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.dashboard-header-section p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Stats cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard sections */
.dashboard-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.dashboard-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.dashboard-section h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

/* Recent reviews */
.recent-reviews {
    margin-bottom: 20px;
}

.review-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item.featured {
    background: linear-gradient(90deg, #e6f3ff 0%, #ffffff 100%);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #1aabff;
    margin-bottom: 10px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-rating {
    color: #ffc107;
    font-size: 14px;
}

.featured-badge {
    background: #1aabff;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.review-content {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

/* Quick actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
}

.action-button:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.action-button .dashicons {
    font-size: 20px;
    margin-bottom: 5px;
}

/* No business page */
.no-business {
    text-align: center;
    max-width: 600px;
    margin: 50px auto;
}

.no-business-message h1 {
    color: #3498db;
    margin-bottom: 20px;
}

.create-business-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    text-align: left;
}

.create-business-section h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Form styles */
.create-business-form .form-row {
    margin-bottom: 20px;
}

.create-business-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.create-business-form input,
.create-business-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.create-business-form input:focus,
.create-business-form select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 25px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.button:hover {
    background: #2980b9;
    color: white;
}

.button-primary {
    background: #3498db;
}

.button-hero {
    padding: 15px 30px;
    font-size: 18px;
}

.spinner {
    display: none;
    margin-left: 10px;
}

.spinner.show {
    display: inline-block;
}

/* Responsive design */
@media (max-width: 768px) {
    .endorsehq-dashboard-wrapper {
        flex-direction: column;
    }
    
    .endorsehq-dashboard-nav {
        width: 100%;
        position: relative;
    }
    
    .dashboard-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .dashboard-menu {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .dashboard-menu li {
        border-bottom: none;
        border-right: 1px solid #34495e;
        flex-shrink: 0;
    }
    
    .dashboard-menu li:last-child {
        border-right: none;
    }
    
    .dashboard-content {
        padding: 20px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .dashboard-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header-section h1 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .dashboard-content {
        padding: 15px;
    }
    
    .dashboard-section {
        padding: 20px;
    }
    
    .create-business-section {
        padding: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px;
    border: 2px solid #3498db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success/Error messages */
.dashboard-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.dashboard-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.dashboard-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.dashboard-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Tabbed Dashboard Styles */
.endorsehq-dashboard-tabbed {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Universal Sub-Tab Styling for Reviews, Invites, and Analytics */
.reviews-management-tabs,
.invites-management-tabs,
.analytics-tabs {
    margin-top: 20px;
}

.review-tabs-nav,
.invite-tabs-nav,
.analytics-tabs-nav {
    display: flex;
    border-bottom: 3px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    overflow-x: auto;
}

.review-tab-btn,
.invite-tab-btn,
.analytics-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
}

.review-tab-btn:hover,
.invite-tab-btn:hover,
.analytics-tab-btn:hover {
    background: #e9ecef;
    color: #333;
}

.review-tab-btn.active,
.invite-tab-btn.active,
.analytics-tab-btn.active {
    background: white;
    color: #3498db;
    border-bottom-color: #3498db;
}

.review-tabs-content,
.invite-tabs-content,
.analytics-tabs-content {
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-tab-content,
.invite-tab-content,
.analytics-tab-content {
    display: none;
    padding: 30px;
    min-height: 400px;
}

.review-tab-content.active,
.invite-tab-content.active,
.analytics-tab-content.active {
    display: block;
}

.endorsehq-dashboard-tabbed .dashboard-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 3rem;
    padding: 30px 20px 20px 20px;
    border-bottom: 2px solid #e9ecef;
    background: #000b40;
    border-radius: 8px 8px 0 0;
}

.endorsehq-dashboard-tabbed .dashboard-header h2 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 28px;
}

.endorsehq-dashboard-tabbed .business-name {
    color: #cccccc;
    margin: 5px 0;
    font-size: 16px;
}

.endorsehq-dashboard-tabbed .welcome-message {
    color: #aaaaaa;
    font-size: 14px;
    margin: 10px 0 0 0;
}

.endorsehq-dashboard-tabbed .welcome-message a {
    color: #ff9999;
    text-decoration: none;
}

.dashboard-tabs {
    margin-bottom: 30px;
}

.tab-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 3px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    overflow-x: auto;
}

.tab-nav li {
    flex: 1;
    min-width: 120px;
}

.tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-decoration: none;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.tab-link:hover {
    background: #e9ecef;
    color: #333;
}

.tab-link.active {
    background: white;
    color: #3498db;
    border-bottom-color: #3498db;
}

.tab-link .dashicons {
    margin-right: 8px;
    font-size: 16px;
}

.tab-content {
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tab-pane {
    display: none;
    padding: 30px;
    min-height: 400px;
}

.tab-pane.active {
    display: block;
}

/* Widget previews in tabs */
.widget-previews {
    display: grid;
    gap: 30px;
    margin-top: 20px;
}

.widget-preview {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    background: #f8f9fa;
}

.widget-preview h4 {
    margin-top: 0;
    color: #2c3e50;
}

.embed-code {
    margin-top: 15px;
}

.embed-code label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.embed-code textarea {
    width: 100%;
    height: 60px;
    font-family: monospace;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    background: white;
    resize: vertical;
}

.embed-code small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-style: italic;
}

/* Responsive tabbed design */
@media (max-width: 768px) {
    .tab-nav {
        flex-direction: column;
    }
    
    .tab-nav li {
        min-width: auto;
    }
    
    .tab-link {
        padding: 12px 15px;
        justify-content: flex-start;
    }
    
    .tab-pane {
        padding: 20px;
    }
    
    .endorsehq-dashboard-tabbed .dashboard-header h2 {
        font-size: 24px;
    }
    
    /* Responsive sub-tabs */
    .review-tabs-nav,
    .invite-tabs-nav,
    .analytics-tabs-nav {
        flex-direction: column;
    }
    
    .review-tab-btn,
    .invite-tab-btn,
    .analytics-tab-btn {
        min-width: auto;
        padding: 12px 15px;
        justify-content: flex-start;
    }
    
    .review-tab-content,
    .invite-tab-content,
    .analytics-tab-content {
        padding: 20px;
    }
}

/* Subscription Information Styles */
.subscription-info {
    margin: 30px 0;
}

.subscription-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.subscription-card h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscription-card .dashicons {
    font-size: 24px;
}

.plan-limits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.limit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.limit-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.limit-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.upgrade-prompt {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.upgrade-prompt p {
    margin: 0 0 15px 0;
    font-size: 16px;
}

.upgrade-button {
    background: #1aabff !important;
    border: none !important;
    color: white !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upgrade-button:hover {
    background: #0d8ae6 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 171, 255, 0.4);
}

.plan-status {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.plan-status p {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.plan-status p:last-child {
    margin-bottom: 0;
}

.billing-info {
    opacity: 0.9;
    font-size: 14px !important;
}

/* Responsive subscription card */
@media (max-width: 768px) {
    .plan-limits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .subscription-card {
        padding: 20px;
    }
    
    .subscription-card h3 {
        font-size: 18px;
    }
}

/* Premium Feature Restrictions */
.premium-restriction-notice {
    position: relative;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.restriction-content h3 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 700;
}

.restriction-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    opacity: 0.9;
}

.upgrade-benefits {
    margin: 20px 0;
}

.upgrade-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.upgrade-benefits li {
    margin: 8px 0;
    font-size: 14px;
}

.upgrade-link {
    background: white;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.upgrade-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #667eea;
    text-decoration: none;
}

.blurred-content {
    filter: blur(8px) !important;
    pointer-events: none !important;
    user-select: none !important;
    opacity: 0.3 !important;
    position: relative !important;
    background: rgba(200, 200, 200, 0.5) !important;
}

.blurred-content::before {
    content: 'UPGRADE TO PRO TO ACCESS THIS FEATURE' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: rgba(102, 126, 234, 0.95) !important;
    color: white !important;
    padding: 20px 40px !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    text-align: center !important;
    z-index: 1000 !important;
    pointer-events: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Plan notice styles */
.plan-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.plan-notice.free-plan {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333;
}

.plan-notice.pro-plan {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.plan-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    margin-right: 15px;
}

.plan-badge.pro {
    background: rgba(255, 255, 255, 0.3);
}

.plan-limits {
    font-size: 14px;
    opacity: 0.9;
}

/* Stat card premium styles */
.stat-card.limit-reached {
    border: 2px solid #ff6b6b;
    background: #fff5f5;
}

.limit-warning {
    background: #ff6b6b;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
    text-align: center;
}

.premium-feature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
    text-align: center;
}

/* Action button premium styles */
.action-button.premium-required {
    position: relative;
    opacity: 0.7;
}

.action-button .pro-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 8px;
    font-weight: 600;
}

/* Invites page specific styles */
.current-usage {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.current-usage h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.usage-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.usage-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.usage-label {
    font-weight: 500;
    color: #666;
}

.usage-value {
    font-weight: 600;
    color: #333;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.invite-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.invite-method {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 25px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.invite-method h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 20px;
}

.invite-method p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
}

.invite-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.invite-form .form-row {
    margin-bottom: 20px;
}

.invite-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.send-invite-btn {
    margin-top: auto;
}

.invite-form input,
.invite-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.invite-form input:focus,
.invite-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.invite-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.send-invite-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.send-invite-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.send-invite-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .plan-notice {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .plan-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .invite-methods {
        grid-template-columns: 1fr;
    }
    
    .usage-stats {
        flex-direction: column;
        gap: 15px;
    }
}