/* Custom CSS for Funding Campaign Page */

/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation: none !important;
    transition: none !important;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #2d3748;
    line-height: 1.6;
}

/* Improved Navigation */
.navbar {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background-color: #ffffff !important;
    z-index: 1030;
    position: fixed;
    width: 100%;
    top: 0 !important;
    left: 0;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    min-height: 70px;
    display: flex;
    align-items: center;
  
    backdrop-filter: blur(10px);
}

.navbar-brand {
    text-decoration: none !important;
    padding: 0.25rem 0 !important;
}

.navbar-brand h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0;
}

.navbar-brand small {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 400;
}

.logo-img {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 0.4rem 0.6rem !important;
    transition: all 0.2s ease !important;
}

.navbar-toggler:focus {

    border-color: #3182ce !important;
}

.navbar-toggler:hover {
    border-color: #3182ce !important;
    background-color: rgba(49, 130, 206, 0.05) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.2em !important;
    height: 1.2em !important;
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
}

.nav-item {
    margin: 0 0.2rem;
}

.nav-link {
    color: #4a5568 !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 1rem !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: #2d3748 !important;
    background-color: rgba(49, 130, 206, 0.08) !important;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #3182ce !important;
    background-color: rgba(49, 130, 206, 0.1) !important;
    font-weight: 600 !important;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: #3182ce;
    border-radius: 0 0 3px 3px;
}

/* Mobile Navigation Styles - NAVBAR GIZLI */
@media (max-width: 991.98px) {
    .navbar {
        display: none !important;
    }
}

/* Tablet ve Desktop için navbar görünür */
@media (min-width: 992px) {
    .navbar {
        display: flex !important;
    }
}

/* Main content - navbar kaldırıldı, padding yok */
.campaign-page {
    padding-top: 0px !important;
    margin: 0 !important;
    position: relative;
    width: 100%;
}

/* Sidebar Styling */
.sidebar-left,
.sidebar-right {
    min-height: calc(100vh - 20px);
}

/* Sol Sidebar - Koyu Tema */
.sidebar-left {
    background-color: #e9ecef !important;
    padding: 0.5rem !important;
    padding-left: 0 !important;
}

/* Desktop'ta sticky */
@media (min-width: 992px) {
    .sidebar-left {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        overflow-y: auto !important;
    }
}

/* Mobile'da normal scroll */
@media (max-width: 991.98px) {
    .sidebar-left {
        position: relative !important;
        height: auto !important;
        overflow-y: visible !important;
    }
}

.sidebar-left .card {
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
  
    margin-bottom: 1rem !important;
}



.sidebar-left .card-body {
    padding: 1.2rem !important;
}

/* Sol Sidebar Card Header */
.sidebar-left .card-header {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 0.8rem 1.2rem !important;
    color: #212529 !important;
    font-weight: 500 !important;
}

.sidebar-left .card-header i {
    color: #6c757d !important;
}

/* Sağ Sidebar - Sol Tarafla Aynı Arkaplan */
.sidebar-right {
    background-color: #e9ecef !important;
    padding: 1rem !important;
}

.sidebar-right .card {
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
  
    margin-bottom: 1rem !important;
}



.sidebar-right .card-body {
    padding: 1.2rem !important;
}

.sidebar-right .card-header {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 0.8rem 1.2rem !important;
    color: #212529 !important;
    font-weight: 500 !important;
}

.sidebar-right .card-header i {
    color: #6c757d !important;
}

/* Investment Tier Düzenleme */
.sidebar-right .investment-tier {
    background-color: #f1f3f4 !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    margin-bottom: 0.8rem !important;
    padding: 1rem !important;
}

.sidebar-right .investment-tier:hover {
    border-color: #ced4da !important;
    background-color: #e9ecef !important;
}

/* Navigation Links Vertical Styles */
.nav-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-link-vertical {
    color: #4a5568 !important;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-link-vertical:hover {
    color: #2d3748 !important;
    background-color: #f7fafc !important;
    border-color: #cbd5e0;
    transform: translateX(3px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-link-vertical:active,
.nav-link-vertical:focus {
    color: #3182ce !important;
    background-color: #ebf8ff !important;
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
}

.nav-link-vertical.active {
    color: #ffffff !important;
    background-color: #3182ce !important;
    border-color: #3182ce !important;
    font-weight: 600 !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 8px rgba(49, 130, 206, 0.3) !important;
}

.nav-link-vertical.active i {
    color: #ffffff !important;
}

.nav-link-vertical.active small {
    color: #ffffff !important;
}

/* Daha güçlü selector */
.sidebar-right .nav-link-vertical.active {
    color: #ffffff !important;
    background-color: #3182ce !important;
    border-color: #3182ce !important;
    font-weight: 600 !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 8px rgba(49, 130, 206, 0.3) !important;
}

.nav-link-vertical small {
    color: inherit;
    font-weight: 500;
}

.nav-link-vertical i {
    width: 16px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Sağ Sidebar Butonları */
.sidebar-right .btn {
    border-radius: 6px !important;
    padding: 0.5rem 0.75rem !important;
    font-weight: 500 !important;
}

.sidebar-right .btn-primary {
    background-color: #495057 !important;
    border-color: #495057 !important;
}

.sidebar-right .btn-primary:hover {
    background-color: #343a40 !important;
    border-color: #343a40 !important;
}

/* Circular Progress Desktop - Daha Büyük */
.sidebar-left .circular-progress {
    width: 110px !important;
    height: 110px !important;
    margin: 0 auto 1rem;
    position: relative;
}

.sidebar-left .circular-progress .progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 5px;
}

.sidebar-left .circular-progress .progress-value h5 {
    font-size: 1rem !important;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2px !important;
    line-height: 1;
}

.sidebar-left .circular-progress .progress-value small {
    font-size: 0.7rem !important;
    color: #6c757d;
    line-height: 1;
    display: block;
}

/* New Small Circular Progress for Right Side */
.circular-progress-small {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
}

.progress-value-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

/* Main Progress Bar - Center Logo Replacement */
.main-progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-progress-main {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
}

.progress-value-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.progress-value-main h5 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #28a745 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

/* Funding Main Display */
.funding-main-display h2 {
    font-weight: 800 !important;
    color: #2d3748 !important;
}

.funding-main-display h6 {
    color: #4a5568 !important;
    font-weight: 600 !important;
}

/* Action Buttons Styling */
.action-buttons .btn {
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.4rem 0.8rem !important;
  
    transition: all 0.2s ease !important;
    border-width: 1.5px !important;
}

.action-buttons .btn:hover {
    transform: translateY(-1px) !important;

}

.action-buttons .btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
    background: transparent !important;
}

.action-buttons .btn-outline-primary:hover {
    background: #0d6efd !important;
    border-color: #0d6efd !important;
    color: white !important;
}

.action-buttons .btn-success {
    background: #198754 !important;
    border-color: #198754 !important;
    color: white !important;
}

.action-buttons .btn-success:hover {
    background: #157347 !important;
    border-color: #146c43 !important;
}

/* Stats Grid Improvements */
.stats-grid .stat-item {
    background: rgba(248, 249, 250, 0.7) !important;
    border-radius: 8px !important;
    transition: background 0.2s ease !important;
}

.stats-grid .stat-item:hover {
    background: rgba(248, 249, 250, 1) !important;
}

/* Contact Section */
.contact-section {
    background: rgba(248, 249, 250, 0.3) !important;
    border-radius: 8px !important;
    margin: 0 -1rem !important;
    padding: 1rem !important;
}

/* Stats Grid */
.sidebar-left .stats-grid {
    background-color: #f1f3f4 !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-bottom: 1rem !important;
}

.sidebar-left .stats-item h6 {
    color: #343a40 !important;
    font-weight: 600 !important;
}

/* Contact Info */
.sidebar-left .contact-info {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
}

.sidebar-left .contact-info h6 {
    color: #343a40 !important;
}

/* Social Links ve Butonlar */
.sidebar-left .social-links .btn {
    border-radius: 6px !important;
    padding: 0.5rem 0.75rem !important;
    font-weight: 500 !important;
}

.sidebar-left .social-links .btn-outline-primary {
    border-color: #1e40af !important;
    color: #1e40af !important;
}

.sidebar-left .social-links .btn-outline-primary:hover {
    background-color: #1e40af !important;
    border-color: #1e40af !important;
    color: white !important;
}

/* Logo */
.sidebar-left .company-logo-large,
.sidebar-left .logo-img {
    border: 2px solid #dee2e6 !important;
    border-radius: 8px !important;
}

/* Responsive Sidebar */
@media (max-width: 1199.98px) {
    .sidebar-left,
    .sidebar-right {
        font-size: 0.85rem;
        padding: 0.75rem !important;
    }
    
    .sidebar-left .card-body,
    .sidebar-right .card-body {
        padding: 1rem !important;
    }
    
    .sidebar-left h6,
    .sidebar-right h6 {
        font-size: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    .sidebar-left,
    .sidebar-right {
        display: block !important;
        padding: 0.75rem 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .main-content {
        padding: 0.75rem 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    /* Mobilde Sıralama */
    .sidebar-left {
        order: 1;
        margin-bottom: 0.5rem !important;
    }
    
    .main-content {
        order: 2;
        margin-bottom: 0.5rem !important;
    }
    
    .sidebar-right {
        order: 3;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Container için padding azaltma */
    .container-fluid {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .row {
        margin: 0 !important;
    }
    
    /* Mobilde Sticky Kaldır */
    .sidebar-left .campaign-stats,
    .sidebar-right .investment-info {
        position: static !important;
        margin-bottom: 0 !important;
    }
    
    .sticky-top {
        position: static !important;
    }
    
    /* Mobil Kartlar - Daha Geniş */
    .sidebar-left .card,
    .sidebar-right .card {
        margin-bottom: 0.75rem !important;
        border-radius: 15px !important;

        
    
        width: 100% !important;
        max-width: none !important;
    }
    
    .sidebar-left .card-body,
    .sidebar-right .card-body {
        padding: 1.75rem !important;
    }
    
    .sidebar-left .card-header,
    .sidebar-right .card-header {
        padding: 1.25rem 1.75rem !important;
        border-radius: 15px 15px 0 0 !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
    }
    
    /* Funding Display Mobil */
    .funding-main-display h2 {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
    }
    
    /* Main Progress Bar Mobil */
    .circular-progress-main {
        width: 100px !important;
        height: 100px !important;
    }
    
    .progress-value-main h5 {
        font-size: 1.5rem !important;
        font-weight: 800 !important;
    }
    
    .circular-progress-small {
        width: 70px !important;
        height: 70px !important;
    }
    
    .progress-value-small span {
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    /* Action Buttons Mobil */
    .action-buttons .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 25px !important;
    }
    
    /* Company Logo Mobil */
    .sidebar-left .company-logo-large {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 1.25rem !important;
    }
    
    .sidebar-left h6 {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
    }
    
    .sidebar-left .text-primary {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
    }
    
    /* Investment Tier Mobil */
    .sidebar-right .investment-tier {
        margin-bottom: 0.75rem !important;
        padding: 1.5rem !important;
        border-radius: 12px !important;
        background-color: #f8f9fa !important;
    }
    
    .sidebar-right .investment-tier h6 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Stats Grid Mobil */
    .sidebar-left .stats-grid {
        margin-bottom: 1.25rem !important;
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    
    .sidebar-left .stats-item h6 {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
    }
    
    /* Contact Info Mobil */
    .sidebar-left .contact-info {
        margin-top: 1.25rem !important;
        margin-bottom: 0 !important;
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    
    .sidebar-left .contact-info h6 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Butonlar Mobil */
    .sidebar-right .btn-primary {
        padding: 1.25rem 1.75rem !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        width: 100% !important;
    }
    
    .sidebar-left .social-links .btn {
        padding: 0.8rem !important;
        margin: 0.25rem !important;
        border-radius: 10px !important;
        font-size: 1.2rem !important;
        width: 55px !important;
        height: 55px !important;
    }
    
    /* Typography Mobil */
    .sidebar-left small,
    .sidebar-right small {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    /* Son kart için margin-bottom kaldır */
    .sidebar-right .card:last-child {
        margin-bottom: 0 !important;
    }
    
    .sidebar-right .investment-info {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .sidebar-left,
    .sidebar-right {
        margin-bottom: 0.25rem !important;
        padding: 0.5rem 0.25rem !important;
    }
    
    .main-content {
        padding: 0.5rem 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .sidebar-right {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .sidebar-left .card-body,
    .sidebar-right .card-body {
        padding: 1.5rem !important;
    }
    
    .sidebar-left .card-header,
    .sidebar-right .card-header {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* Küçük ekranlar için funding display */
    .funding-main-display h2 {
        font-size: 2rem !important;
    }
    
    /* Main Progress Bar Küçük Ekran */
    .circular-progress-main {
        width: 110px !important;
        height: 110px !important;
    }
    
    .progress-value-main h5 {
        font-size: 1.2rem !important;
    }
    
    .circular-progress-small {
        width: 55px !important;
        height: 55px !important;
    }
    
    .progress-value-small span {
        font-size: 0.8rem !important;
    }
}

/* Desktop'ta sticky-top */
@media (min-width: 992px) {
    .sticky-top:not(.navbar) {
        top: 10px !important;
        z-index: 1020;
    }
}

/* Mobile'da sticky-top iptal */
@media (max-width: 991.98px) {
    .sticky-top:not(.navbar) {
        position: relative !important;
        top: auto !important;
    }
}

/* Desktop'ta campaign-stats sticky */
@media (min-width: 992px) {
    .sidebar-left .campaign-stats {
        position: sticky !important;
        top: 10px !important;
    }
}

/* Mobile'da campaign-stats normal */
@media (max-width: 991.98px) {
    .sidebar-left .campaign-stats {
        position: relative !important;
        top: auto !important;
    }
}

/* Company Logo */
.company-logo-large {
    border-radius: 15px;
    border: 3px solid #007bff;
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #edf2f7;
    overflow: hidden;
}

.progress-bar {
    background: #3182ce;
    border-radius: 4px;
}

/* Stats Grid */
.stats-grid {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem;
}

.stats-grid .col-6 {
    border-right: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
}

.stats-grid .col-6:last-child {
    border-right: none;
}

/* Cards */
.card {
    background: #ffffff;
    transition: border-color 0.2s ease;
    margin-bottom: 0.5rem;
}

.main-content .card {
    margin-bottom: 0.5rem !important;
}

.main-content section {
    margin-bottom: 0.5rem !important;
}



.card-header {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #2d3748;
    border-radius: 7px 7px 0 0;
}

.card-body {
    padding: 1.5rem;
}

/* Team Photos */
.team-photo {
    border: 2px solid #3182ce;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.team-photo:hover {
    transform: scale(1.05);
}

/* Document Items */
.document-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
    background: #ffffff;
}

.document-item:hover {
    border-color: #3182ce;
}

/* Investment Tiers */
.investment-tier {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    background: #ffffff;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.investment-tier:hover {
    border-color: rgba(0,0,0,0.2);
}

/* Social Links */
.social-links a {
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Update Items */
.update-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #ffffff;
}

/* Comment Items */
.comment-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #ffffff;
}

.avatar-placeholder {
    font-size: 16px;
}

/* Accordion */
.accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.accordion-button {
    background: #f8f9fa;
    color: #2d3748;
    font-weight: 500;
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: #3182ce;
    color: #ffffff;
}

.accordion-body {
    padding: 1.5rem;
    background: #ffffff;
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: #3182ce;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2c5282;
}

.btn-outline-primary {
    border-color: #3182ce;
    color: #3182ce;
}

.btn-outline-primary:hover {
    background: #3182ce;
    color: #ffffff;
}

/* Tables */
.table {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #2d3748;
    font-weight: 600;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Rich Text Content Styles */
.rich-text-content img,
.product-content img,
.description-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    transition: none !important;
    opacity: 1 !important;
    animation: none !important;
}

.rich-text-content p,
.product-content p,
.description-content p {
    margin-bottom: 1rem;
}

/* Disable unwanted transitions */
img {
    transition: none !important;
}

/* Ensure images are visible */
img[style*="opacity"] {
    opacity: 1 !important;
}

/* Product Section Specific Styles */
.product-section img {
    border-radius: 8px;
   
}

/* Kompakt Sidebar Stilleri */
.sidebar-left .card,
.sidebar-right .card {
    font-size: 0.9rem;
}

.sidebar-left h6,
.sidebar-right h6 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.sidebar-left small,
.sidebar-right small {
    font-size: 0.8rem;
    line-height: 1.4;
} 