/* ===== GENEL STILLER ===== */
:root {
    /* Ana Renkler */
    --primary-color: #4a6cf7;
    --primary-dark: #3a56d4;
    --primary-light: #6b89ff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    /* Sosyal Medya Renkleri */
    --instagram-color: #e1306c;
    --facebook-color: #1877f2;
    --twitter-color: #1da1f2;
    
    /* Gri Tonları */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Yazı Tipi */
    --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Gölgeler */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Kenar Yuvarlaklığı */
    --border-radius-sm: 0.25rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    
    /* Geçiş Efektleri */
    --transition: all 0.3s ease;
    
    /* Konteyner Genişlikleri */
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(74, 108, 247, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 108, 247, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--border-radius-sm);
}

.btn-lg, .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-icon {
    width: 2rem;
    height: 2rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== FORMLAR ===== */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: white;
    background-clip: padding-box;
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    color: var(--gray-700);
    background-color: white;
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(74, 108, 247, 0.25);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.input-with-icon input,
.input-with-icon textarea,
.input-with-icon select {
    padding-left: 2.5rem;
}

/* ===== ANA SAYFA STILLER ===== */
/* Header */
.landing-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.landing-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1, .logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.logo span {
    color: var(--primary-color);
}

.landing-header nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.landing-header nav a {
    color: var(--gray-700);
    font-weight: 500;
}

.landing-header nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background-color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.hero-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.feature-card p {
    color: var(--gray-600);
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background-color: white;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.step-content p {
    color: var(--gray-600);
}

.step-image {
    flex: 1;
}

.step-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.step-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-image-placeholder p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: var(--gray-100);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.pricing-features i.fa-check {
    color: var(--success-color);
}

.pricing-features i.fa-times {
    color: var(--danger-color);
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.testimonial {
    min-width: 350px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.author-avatar i {
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: white;
}

.cta .btn-outline {
    color: white;
    border-color: white;
}

.cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 2;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--gray-400);
}

.footer-links {
    flex: 3;
    display: flex;
    gap: 2rem;
}

.footer-links-column {
    flex: 1;
}

.footer-links-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-column a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--gray-800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== GİRİŞ SAYFASI STILLER ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    padding: 2rem 0;
}

.auth-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo a {
    display: inline-block;
}

.auth-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.auth-form {
    padding: 2rem;
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
    text-align: center;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.remember-me, .terms-conditions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forgot-password {
    font-size: 0.875rem;
}

.social-login {
    margin-top: 2rem;
    text-align: center;
}

.social-login p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: var(--gray-300);
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-300);
    background-color: white;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--gray-100);
}

.social-btn.google {
    color: #ea4335;
}

.social-btn.facebook {
    color: #1877f2;
}

.auth-footer {
    text-align: center;
}

.auth-footer p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.auth-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.auth-footer-links a {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.auth-footer-links a:hover {
    color: var(--primary-color);
}

/* ===== DASHBOARD STILLER ===== */
.dashboard-page {
    min-height: 100vh;
    background-color: var(--gray-100);
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    z-index: 100;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-toggle {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.user-avatar img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.user-info p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.sidebar-nav {
    flex: 1;
    padding: 1.25rem 0;
    overflow-y: auto;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
}

.sidebar-nav li {
    margin-bottom: 0.25rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.sidebar-nav a:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.sidebar-nav li.active a {
    background-color: var(--gray-100);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.sidebar-divider {
    height: 1px;
    background-color: var(--gray-200);
    margin: 1rem 1.25rem;
}

.sidebar-nav a.logout {
    color: var(--danger-color);
}

.sidebar-nav a.logout:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Dashboard Content */
.dashboard-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.header-search {
    position: relative;
    width: 300px;
}

.header-search i {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.header-search input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--gray-100);
    transition: var(--transition);
}

.header-search input:focus {
    background-color: white;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(74, 108, 247, 0.25);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-notification {
    position: relative;
}

.notification-btn {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background-color: var(--danger-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 100;
    display: none;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.notification-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.notification-list {
    max-height: 320px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.notification-item:hover {
    background-color: var(--gray-100);
}

.notification-item.unread {
    background-color: rgba(74, 108, 247, 0.05);
}

.notification-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content p {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.header-user {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.user-btn img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.user-btn span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 100;
    display: none;
}

.user-dropdown ul {
    padding: 0.5rem 0;
}

.user-dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.user-dropdown li a:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--gray-200);
    margin: 0.5rem 0;
}

/* Dashboard Main */
.dashboard-main {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.page-header p {
    color: var(--gray-600);
}

.dashboard-welcome {
    margin-bottom: 2rem;
}

.dashboard-welcome h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.dashboard-welcome p {
    color: var(--gray-600);
}

.dashboard-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.overview-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overview-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.overview-icon.instagram {
    background-color: var(--instagram-color);
}

.overview-icon.facebook {
    background-color: var(--facebook-color);
}

.overview-icon.twitter {
    background-color: var(--twitter-color);
}

.overview-info {
    flex: 1;
}

.overview-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.overview-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.overview-card.add-account {
    background-color: var(--gray-100);
    border: 2px dashed var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.overview-card.add-account:hover {
    border-color: var(--primary-color);
    background-color: rgba(74, 108, 247, 0.05);
}

.add-account-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-account-content i {
    font-size: 2rem;
    color: var(--primary-color);
}

.add-account-content span {
    font-weight: 500;
    color: var(--gray-700);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.card-content {
    padding: 1.25rem;
}

.card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.card-footer a {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Post Items */
.post-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.post-item:last-child {
    border-bottom: none;
}

.post-image img {
    width: 5rem;
    height: 5rem;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

.post-info {
    flex: 1;
}

.post-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.post-platform {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.post-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.post-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-stats span {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Analytics Summary */
.period-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.period-btn {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.period-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.analytics-chart {
    margin-bottom: 1.5rem;
}

.chart-placeholder {
    width: 100%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.analytics-metrics {
    display: flex;
    justify-content: space-between;
}

.metric {
    text-align: center;
}

.metric-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.metric-value span:first-child {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: var(--border-radius-sm);
}

.metric-change.positive {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.metric-change.negative {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Scheduled Posts */
.scheduled-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.scheduled-post:last-child {
    border-bottom: none;
}

.scheduled-time {
    width: 5rem;
    text-align: center;
}

.time-day {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.time-hour {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.scheduled-content {
    flex: 1;
}

.scheduled-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.platforms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.platform-icon i.fa-instagram {
    color: var(--instagram-color);
}

.platform-icon i.fa-facebook-f {
    color: var(--facebook-color);
}

.platform-icon i.fa-twitter {
    color: var(--twitter-color);
}

.scheduled-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Comments */
.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-header h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.comment-platform {
    font-size: 0.75rem;
}

.comment-platform i.fa-instagram {
    color: var(--instagram-color);
}

.comment-platform i.fa-facebook-f {
    color: var(--facebook-color);
}

.comment-platform i.fa-twitter {
    color: var(--twitter-color);
}

.comment-content p {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.comment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== İÇERİK OLUŞTURMA SAYFASI STILLER ===== */
.create-post-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 2rem;
}

.create-post-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
}

.post-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.post-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.create-post-content {
    display: flex;
    padding: 1.5rem;
}

.post-editor {
    flex: 3;
    padding-right: 1.5rem;
    border-right: 1px solid var(--gray-200);
}

.post-platforms {
    margin-bottom: 2rem;
}

.post-platforms h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.platform-selector {
    display: flex;
    gap: 1rem;
}

.platform-option {
    flex: 1;
}

.platform-option input[type="checkbox"] {
    display: none;
}

.platform-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.platform-option input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(74, 108, 247, 0.05);
}

.platform-option label i.fa-instagram {
    color: var(--instagram-color);
}

.platform-option label i.fa-facebook-f {
    color: var(--facebook-color);
}

.platform-option label i.fa-twitter {
    color: var(--twitter-color);
}

.platform-option label span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.post-content-editor {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.editor-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.media-uploader {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media-preview {
    width: 100%;
    height: 200px;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.media-preview:hover {
    border-color: var(--primary-color);
    background-color: rgba(74, 108, 247, 0.05);
}

.upload-placeholder {
    text-align: center;
    padding: 1rem;
}

.upload-placeholder i {
    font-size: 2.5rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.upload-placeholder p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.upload-placeholder span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.media-actions {
    display: flex;
    gap: 1rem;
}

.text-editor {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.editor-toolbar {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.toolbar-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.toolbar-btn:hover {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.text-editor textarea {
    width: 100%;
    height: 150px;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-top: none;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    resize: none;
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
}

.text-editor textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

.character-counter {
    align-self: flex-end;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.tags-location {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-scheduling {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scheduling-options {
    display: flex;
    gap: 2rem;
}

.scheduling-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scheduling-option label {
    font-size: 0.875rem;
    color: var(--gray-700);
    cursor: pointer;
}

.schedule-datetime {
    display: flex;
    gap: 1rem;
}

.post-preview {
    flex: 2;
}

.post-preview h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.preview-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preview-tab {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.preview-tab.active {
    background-color: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.preview-tab i.fa-instagram {
    color: var(--instagram-color);
}

.preview-tab i.fa-facebook-f {
    color: var(--facebook-color);
}

.preview-tab i.fa-twitter {
    color: var(--twitter-color);
}

.preview-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
}

.preview-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 1rem;
    display: none;
}

.preview-frame.active {
    display: block;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.preview-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.preview-profile img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.preview-profile-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.preview-profile-info p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.preview-options {
    color: var(--gray-600);
}

.preview-image {
    width: 100%;
    height: 300px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.preview-placeholder i {
    font-size: 2.5rem;
    color: var(--gray-400);
}

.preview-placeholder p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.preview-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.preview-action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-action-buttons i {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.preview-save i {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.preview-caption {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.preview-caption strong {
    font-weight: 600;
}

.preview-hashtags {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.preview-fb-header,
.preview-tweet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.preview-fb-actions,
.preview-tweet-actions {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.preview-reactions span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.preview-tweet-actions span {
    font-size: 1.25rem;
    color: var(--gray-700);
}

.create-post-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* ===== HESAPLARIM SAYFASI STILLER ===== */
.accounts-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accounts-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.accounts-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
}

.stat-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.accounts-actions {
    display: flex;
    gap: 1rem;
}

.accounts-list {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.account-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    padding: 0 1.5rem;
}

.account-tab {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.account-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.account-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.account-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.account-card:hover {
    box-shadow: var(--shadow);
}

.account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.account-platform {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.account-platform.instagram {
    background-color: var(--instagram-color);
}

.account-platform.facebook {
    background-color: var(--facebook-color);
}

.account-platform.twitter {
    background-color: var(--twitter-color);
}

.account-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.account-status.connected {
    color: var(--success-color);
}

.account-body {
    padding: 1.5rem;
}

.account-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.account-avatar img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
}

.account-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.account-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.account-stats {
    display: flex;
    justify-content: space-between;
}

.account-stat {
    text-align: center;
}

.account-stat .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.account-stat .stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.account-footer {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
}

.account-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-card.add-account {
    border: 2px dashed var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.account-card.add-account:hover {
    border-color: var(--primary-color);
    background-color: rgba(74, 108, 247, 0.05);
}

.add-account-content {
    text-align: center;
    padding: 2rem;
}

.add-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.add-account-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.add-account-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.accounts-connect-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
}

.modal-close {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.modal-body {
    padding: 1.5rem;
}

.connect-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.connect-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.connect-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(74, 108, 247, 0.05);
}

.connect-platform {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.connect-platform.instagram {
    background-color: var(--instagram-color);
}

.connect-platform.facebook {
    background-color: var(--facebook-color);
}

.connect-platform.twitter {
    background-color: var(--twitter-color);
}

.connect-info {
    flex: 1;
}

.connect-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.connect-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.modal-footer p {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

/* ===== ANALİTİK SAYFASI STILLER ===== */
.analytics-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.analytics-filters {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.date-inputs {
    display: flex;
    gap: 1rem;
}

.filter-actions {
    display: flex;
    gap: 1rem;
}

.analytics-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.overview-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.overview-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.overview-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.overview-value .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.overview-value .change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: var(--border-radius-sm);
}

.overview-value .change.positive {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.overview-value .change.negative {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.overview-period {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.analytics-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

.chart-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.chart-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.chart-actions {
    display: flex;
    gap: 0.5rem;
}

.chart-content {
    padding: 1.25rem;
}

.chart-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}

.legend-color.instagram {
    background-color: var(--instagram-color);
}

.legend-color.facebook {
    background-color: var(--facebook-color);
}

.legend-color.twitter {
    background-color: var(--twitter-color);
}

.legend-color.likes {
    background-color: #ff6b6b;
}

.legend-color.comments {
    background-color: #4dabf7;
}

.legend-color.shares {
    background-color: #51cf66;
}

.legend-color.reach {
    background-color: #fcc419;
}

.legend-color.impressions {
    background-color: #9775fa;
}

.legend-label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.demographics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.demographics-section {
    flex: 1;
    min-width: 300px;
}

.demographics-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-700);
    text-align: center;
}

.analytics-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

.table-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.table-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.table-content {
    padding: 1.25rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.data-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.post-cell {
    width: 250px;
}

.post-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-preview img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

.post-info p {
    font-size: 0.875rem;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.location-map {
    margin-bottom: 1.5rem;
}

.analytics-export {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.export-options {
    text-align: center;
}

.export-options h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.export-options p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.export-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Mobil Menü */
.menu-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    border: none;
    color: var(--gray-700);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background-color: var(--gray-200);
    color: var(--primary-color);
}

/* ===== AYARLAR SEKME STILLER ===== */
.settings-tabs {
    margin-bottom: 2rem;
}

.settings-tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-300);
    padding-bottom: 0.5rem;
}

.settings-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-tab:hover {
    background-color: var(--gray-200);
    border-color: var(--gray-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.settings-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(74, 108, 247, 0.25);
}

.settings-tab i {
    font-size: 1.125rem;
}

.settings-tab-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.settings-tab-pane {
    display: none;
}

.settings-tab-pane.active {
    display: block;
}

/* ===== RESPONSIVE STILLER ===== */
@media (max-width: 1200px) {
    .dashboard-grid,
    .analytics-charts,
    .analytics-tables {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .create-post-content {
        flex-direction: column;
    }
    
    .post-editor {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .landing-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .landing-header nav {
        display: none;
    }
    
    .landing-header nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .landing-header nav.active ul {
        flex-direction: column;
        padding: 1rem;
    }
    
    .landing-header nav.active li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .landing-header nav.active a {
        display: block;
        padding: 0.75rem;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .sidebar {
        position: fixed;
        left: -260px;
        height: 100vh;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .dashboard-header {
        justify-content: flex-end;
    }
    
    .header-search {
        display: none;
    }
}

@media (max-width: 576px) {
    .pricing-plans,
    .features-grid,
    .account-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .accounts-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .platform-selector {
        flex-direction: column;
    }
    
    .scheduling-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .schedule-datetime {
        flex-direction: column;
    }
    
    .export-buttons {
        flex-direction: column;
    }
}

/* ===== BİLDİRİM STILLER ===== */
.notification-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 350px;
}

.notification {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
}

.notification-hide {
    animation: slideOut 0.3s ease forwards;
}

.notification-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.notification-success .notification-icon {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.notification-error .notification-icon {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.notification-info .notification-icon {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--info-color);
}

.notification-content {
    flex: 1;
}

.notification-content p {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--gray-700);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== ALERT STILLER ===== */
.alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--info-color);
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* ===== PLAN BİLGİSİ STILLER ===== */
.selected-plan {
    background-color: rgba(74, 108, 247, 0.05);
    border: 1px solid rgba(74, 108, 247, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.selected-plan h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.selected-plan p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* ===== PROFİL YÖNETİMİ STILLER ===== */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--gray-200);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.avatar-placeholder.large {
    font-size: 3rem;
}

.avatar-actions {
    display: flex;
    gap: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-meter {
    height: 4px;
    background-color: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-bar {
    height: 100%;
    background-color: var(--success-color);
    border-radius: 2px;
    transition: var(--transition);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--success-color);
}

.settings-group {
    margin-bottom: 2rem;
}

.settings-group h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info {
    flex: 1;
}

.setting-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.setting-info p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.setting-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch.small {
    width: 40px;
    height: 20px;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-400);
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

.switch.small .slider:before {
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.switch.small input:checked + .slider:before {
    transform: translateX(20px);
}

.danger-zone {
    background-color: rgba(220, 53, 69, 0.05);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.danger-zone h3 {
    color: var(--danger-color);
    border-bottom-color: rgba(220, 53, 69, 0.2);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-item label {
    font-size: 0.875rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* ===== SİTE YÖNETİMİ STILLER ===== */
.site-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-section {
    margin-bottom: 1.5rem;
}

.image-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.image-preview {
    width: 100%;
    height: 200px;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.image-preview.small {
    height: 150px;
}

.image-preview.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.image-preview.logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview.favicon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.5rem;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    color: var(--primary-color);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
    padding: 0 1rem;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-placeholder h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.logo-placeholder span {
    color: var(--primary-color);
}

.favicon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.favicon-placeholder i {
    font-size: 1.5rem;
}

.image-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.image-item p {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.logo-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-plans-editor {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-plan-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
}

.plan-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.plan-details {
    padding: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-input {
    flex: 1;
}

.feature-enabled {
    width: 60px;
    display: flex;
    justify-content: center;
}

.feature-actions {
    width: 40px;
    display: flex;
    justify-content: center;
}

.add-plan-section {
    margin-top: 1rem;
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: white;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}
