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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, rgb(15, 23, 42) 0%, rgb(30, 41, 59) 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Welcome Section */
.welcome-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, rgb(15, 23, 42) 0%, rgb(30, 41, 59) 100%);
}

.welcome-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgb(139, 92, 246), rgb(168, 85, 247));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    background: linear-gradient(135deg, rgb(139, 92, 246), rgb(168, 85, 247));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* Auth Section */
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: rgb(139, 92, 246);
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.auth-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgb(139, 92, 246);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, rgb(139, 92, 246), rgb(168, 85, 247));
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.full-width {
    width: 100%;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.auth-switch a {
    color: rgb(139, 92, 246);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Dashboard Navigation */
.dashboard-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(139, 92, 246);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Dashboard Content */
.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.dashboard-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Dashboard Widgets */
.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.widget {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.widget-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.widget-content h3 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 500;
}

.metric-change.positive {
    color: #10b981;
}

/* Upcoming Posts */
.upcoming-posts {
    margin-bottom: 40px;
}

.upcoming-posts h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
}

.post-platform {
    font-size: 0.8rem;
    font-weight: bold;
    color: rgb(139, 92, 246);
    margin-bottom: 5px;
}

.post-title {
    color: white;
    font-weight: 500;
}

.post-time {
    text-align: right;
}

.countdown {
    font-size: 1.1rem;
    font-weight: bold;
    color: #10b981;
    display: block;
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 40px;
}

.quick-actions h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-action {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.quick-action:hover {
    border-color: rgb(139, 92, 246);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.action-icon {
    font-size: 2rem;
}

.action-text {
    font-weight: 600;
    text-align: center;
}

.action-count {
    font-size: 0.8rem;
    color: rgb(139, 92, 246);
    font-weight: bold;
}

/* Content Projects */
.content-projects {
    margin-bottom: 40px;
}

.content-projects h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.project-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: rgb(139, 92, 246);
    border-bottom-color: rgb(139, 92, 246);
}

.tab-btn:hover {
    color: rgb(139, 92, 246);
}

.tab-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.project-card h3 {
    color: white;
    margin-bottom: 10px;
}

.project-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-stats span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    background: rgb(139, 92, 246);
    height: 100%;
    transition: width 0.3s ease;
}

.progress-text {
    color: rgb(139, 92, 246);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 30px;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.close:hover {
    color: white;
}

/* Onboarding Modal Styles */
.onboarding-modal {
    max-width: 600px;
    text-align: center;
}

.onboarding-header h2 {
    color: rgb(139, 92, 246);
    margin-bottom: 10px;
}

.onboarding-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.active {
    background: rgb(139, 92, 246);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(139, 92, 246, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin: 20px 0;
}

.highlight-icon {
    font-size: 1.5rem;
}

.onboarding-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Content Type Selection */
.content-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.content-type-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.content-type-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgb(139, 92, 246);
    transform: translateY(-2px);
}

.content-type-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Optimization Tips */
.optimization-tips {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.optimization-tips h4 {
    color: rgb(139, 92, 246);
    margin-bottom: 10px;
}

.optimization-tips ul {
    margin: 0;
    padding-left: 20px;
}

.optimization-tips li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.empty-state h3 {
    color: white;
    margin-bottom: 10px;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Schedule Modal */
.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.schedule-form .form-group {
    margin-bottom: 20px;
}

.schedule-form label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

.optimal-times h4 {
    color: rgb(139, 92, 246);
    margin-bottom: 15px;
}

.time-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-suggestion {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.time-suggestion:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateX(5px);
}

.content-preview-section h4 {
    color: white;
    margin-bottom: 15px;
}

.schedule-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Analytics Modal */
.analytics-modal {
    max-width: 800px;
}

.analytics-content {
    padding: 20px;
}

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

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.metric-card h3 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.metric-card .metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.metric-card .metric-change {
    font-size: 0.8rem;
    font-weight: 500;
}

.metric-change.positive {
    color: #10b981;
}

.analytics-insights {
    margin-bottom: 30px;
}

.analytics-insights h3 {
    color: white;
    margin-bottom: 20px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.insight-icon {
    font-size: 1.5rem;
}

.top-content h3 {
    color: white;
    margin-bottom: 20px;
}

.content-ranking {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.rank {
    background: rgb(139, 92, 246);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.content-info strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

.content-info small {
    color: rgba(255, 255, 255, 0.7);
}

/* Onboarding Questions Styles */
.onboarding-questions {
    padding: 20px 0;
}

.question-step {
    text-align: center;
}

.question-step h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.form-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    margin: 10px 0;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: rgb(139, 92, 246);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.platform-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 300px;
    margin: 20px auto;
}

.platform-checkboxes label {
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.platform-checkboxes label:hover {
    background: rgba(139, 92, 246, 0.2);
}

.platform-checkboxes input[type="checkbox"] {
    margin-right: 8px;
    accent-color: rgb(139, 92, 246);
}

/* Analytics Styles */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.analytics-card h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-large {
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.metric-change {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.metric-change.positive {
    color: #10b981;
}

.insights-section, .top-content-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.insights-section h3, .top-content-section h3 {
    color: white;
    margin-bottom: 15px;
}

.insights-list {
    list-style: none;
    padding: 0;
}

.insights-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insights-list li:last-child {
    border-bottom: none;
}

.top-content-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.content-platform {
    background: rgb(139, 92, 246);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.content-text {
    color: white;
    flex: 1;
    margin: 0 15px;
}

.content-metrics {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: rgba(139, 92, 246, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.success {
    background: rgba(16, 185, 129, 0.9);
}

.notification.error {
    background: rgba(239, 68, 68, 0.9);
}

.notification.info {
    background: rgba(59, 130, 246, 0.9);
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    padding: 0;
    opacity: 0.8;
}

.notification-close:hover {
    opacity: 1;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid rgb(139, 92, 246);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Content Actions */
.content-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Approval Items */
.approval-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approval-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.approval-item h3 {
    color: white;
    margin-bottom: 10px;
}

.approval-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.5;
}

.approval-item small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.approval-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Content Preview */
.content-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    line-height: 1.6;
}

.content-preview strong {
    color: white;
    display: inline-block;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .analytics-overview {
        grid-template-columns: 1fr;
    }
    
    .content-type-grid {
        grid-template-columns: 1fr;
    }
    
    .onboarding-actions {
        flex-direction: column;
    }
    
    .step-indicator {
        gap: 10px;
    }
    
    .step {
        width: 35px;
        height: 35px;
    }
    
    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
}
