/* Font Import */
@import url('https://cdn.jsdelivr.net/npm/gilroy-web@1.0.3/style.css');

/* Genel Stiller */
body {
    background-color: #1e1f2e;
    color: #fff;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header Stilleri */
.site-header {
    background: #242535;
    border-bottom: 1px solid #2f3042;
    padding: 1.25rem 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.header-brand {
    flex: 0 0 auto;
}

.site-logo {
    height: 60px;
    width: auto;
}

/* Arama Kutusu */
.header-search {
    flex: 1;
    max-width: 500px;
}

.header-right {
    flex: 0 0 auto;
}

.search-box {
    display: flex;
    background: #2b2c3d;
    border: 1px solid #363749;
    height: 45px;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 0 20px;
    font-size: 15px;
}

.search-box input::placeholder {
    color: #9293a5;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    width: 60px;
    background: #6366f1;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 16px;
}

.search-box button:hover {
    background: #4f46e5;
}

/* Auth Butonları */
.header-auth {
    display: flex;
    gap: 1.25rem;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.auth-btn.login {
    background: #2b2c3d;
    border: 1px solid #363749;
}

.auth-btn.login:hover {
    background: #363749;
    transform: translateY(-2px);
}

.auth-btn.register {
    background: #6366f1;
    border: 1px solid #6366f1;
}

.auth-btn.register:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.auth-btn i {
    transition: all 0.3s ease;
}

.auth-btn:hover i {
    transform: translateY(-2px);
}

/* Ana Navigasyon */
.main-nav {
    background: #1e1f2e;
    border-bottom: 1px solid #2f3042;
    padding: 0.75rem 0;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-list .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #6366f1;
    color: #fff;
    border: none;
}

.nav-list .btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-list .btn-primary i {
    font-size: 1.1rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link i {
    font-size: 17px;
    color: #6366f1;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #242535;
    border: 1px solid #2f3042;
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #6366f1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: transparent;
    color: #6366f1;
    padding-left: 1.5rem;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

/* İlan Ekle Butonu */
.add-listing {
    background: #6366f1 !important;
    color: #fff !important;
    margin-left: 1rem;
    border-radius: 4px;
    padding: 0.75rem 1.5rem !important;
    border: 1px solid #6366f1;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.add-listing:hover {
    background: #4f46e5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.add-listing i {
    font-size: 1.1rem;
}

.add-listing span {
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .header-wrapper {
        gap: 1rem;
    }

    .header-search {
        width: 100%;
        max-width: none;
    }

    .header-auth {
        width: 100%;
        justify-content: center;
    }

    .main-nav {
        display: none;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        border: none;
        background: #1a2634;
    }
}

/* Kart Stilleri */
.card {
    background: #242535;
    border: 1px solid #2f3042;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: #2b2c3d;
    color: #fff;
    border-bottom: 1px solid #363749;
}

.card-title {
    color: #fff;
}

.card-text {
    color: #9293a5;
}

/* Fiyat Etiketi */
.price-tag {
    color: #6366f1;
    font-weight: bold;
}

/* Özel Buton Stilleri */
.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #003d80);
}

/* Fiyat Etiketi */
.h5.mb-0, .h6.mb-0 {
    color: #28a745;
    font-weight: bold;
}

/* Responsive Ayarlamalar */
@media (max-width: 576px) {
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-login, .btn-register {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .search-bar {
        margin: 1rem 0 !important;
    }
    
    .user-actions {
        margin-top: 1rem;
    }
    
    .navbar .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}

/* Footer Stilleri */
.site-footer {
    background: #242535;
    border-top: 1px solid #2f3042;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 35px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background: #6366f1;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1f2e;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #1e1f2e;
    color: #6366f1;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.powered-by {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.powered-by a {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.powered-by a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-title {
        margin-top: 1rem;
    }

    .footer-bottom .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #242535 0%, #1e1f2e 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/grid-pattern.png') repeat;
    opacity: 0.03;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: #6366f1;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background: #6366f1;
    color: #fff;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(37,211,102, 0.15);
    border: 2px solid rgba(7, 94, 84, 0.3);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.2);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-5px);
    background: rgba(18,140,126, 0.2);
    border-color: rgba(7, 94, 84, 0.4);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(18, 140, 126, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(18, 140, 126, 0);
    }
}

.badge-label {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #25d366, #dcf8c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    margin-bottom: 0.25rem;
    position: relative;
}

.badge-label::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    right: -12px;
    top: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.badge-text {
    font-size: 1rem;
    color: #25c963;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-badge {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1rem;
    }
    
    .badge-label {
        font-size: 1.75rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
}

/* Vitrin İlanları */
.featured-listings {
    margin-top: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.listing-card {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.listing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.listing-card:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.listing-card-link:hover .listing-card {
    border-color: #6366f1;
}

.listing-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #242535;
    border-bottom: 1px solid #2f3042;
    position: relative;
    z-index: 2;
}

.listing-user i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.user-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.listing-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    color: #fff;
}

.banner-left, .banner-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-left i {
    color: #ffd700;
    font-size: 0.875rem;
}

.banner-right i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.banner-left span, .banner-right span {
    font-size: 0.875rem;
    font-weight: 600;
}

.listing-image {
    position: relative;
    padding-top: 80%;
    overflow: hidden;
}

.listing-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.listing-image:hover .server-name {
    border-color: transparent;
}

.listing-content {
    padding: 0.5rem 0.75rem;
    background: #242535;
    border-top: 1px solid #2f3042;
    position: relative;
    z-index: 2;
}

.listing-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.listing-description {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.listing-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: #1e1f2e;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.listing-badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.listing-badge i {
    color: #ffd700;
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .listing-card {
        margin-bottom: 1rem;
    }
}

.listing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.listing-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.show-more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #1e1f2e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #2f3042;
}

.show-more-btn:hover {
    background: #242535;
    color: #fff;
    text-decoration: none;
    border-color: #6366f1;
}

/* Vitrin İlanı Özel Stili */
.listing-card.featured {
    background: #242535;
    border: 2px solid #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

.listing-card.featured:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.listing-card.featured .listing-user {
    background: #242535;
    border-bottom: 1px solid #363749;
}

.listing-card.featured .listing-content {
    background: #242535;
    border-top: 1px solid #363749;
}

.listing-card.featured .listing-price {
    background: #6366f1;
    color: #fff;
    font-weight: 700;
    padding: 0.35rem 1rem;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #242535;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-search {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-search .search-box {
    width: 100%;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #2f3042;
}

.mobile-menu-brand {
    flex: 1;
}

.mobile-logo {
    height: 35px;
    width: auto;
}

.mobile-menu-close {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.mobile-menu-content {
    padding: 1.5rem 0;
}

.mobile-menu-btn {
    background: #2b2c3d;
    border: 1px solid #363749;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #363749;
    border-color: #6366f1;
}

.mobile-menu-btn:focus {
    outline: none;
}

.mobile-auth {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-nav {
    padding: 0 1.5rem;
}

.mobile-nav .nav-list {
    margin: 0;
    padding: 0;
}

.mobile-menu .auth-btn,
.mobile-menu .btn-primary {
    width: 100%;
    margin: 0;
    border-radius: 4px;
    padding: 0.75rem 1rem;
}

/* Modal Styles */
.modal-content {
    background: #242535;
    border: 1px solid #363749;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(145deg, #2b2c3d, #242535);
    border-bottom: 1px solid #363749;
    padding: 1.25rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.modal-header .btn-close {
    background: none;
    border: none;
    color: #9293a5;
    font-size: 1.25rem;
    padding: 0;
    opacity: 1;
}

.modal-header .btn-close:hover {
    color: #fff;
}

.modal-header .btn-close i {
    line-height: 1;
}

.modal-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body .form-label {
    color: #9293a5;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-body .input-group {
    border: 1px solid #363749;
    border-radius: 8px;
    overflow: hidden;
}

.modal-body .input-group:focus-within {
    border-color: #6366f1;
}

.modal-body .input-group-text {
    background: #2b2c3d;
    border: none;
    color: #9293a5;
    padding: 0.75rem 1rem;
}

.modal-body .form-control {
    background: #2b2c3d;
    border: none;
    color: #fff;
    padding: 0.75rem 1rem;
}

.modal-body .form-control::placeholder {
    color: #9293a5;
}

.modal-body .form-control:focus {
    box-shadow: none;
}

.modal-body .btn {
    background: #2b2c3d;
    border: none;
    color: #9293a5;
    padding: 0.75rem 1rem;
}

.modal-body .btn:hover {
    color: #fff;
}

.modal-body .form-check-input {
    background-color: #2b2c3d;
    border-color: #363749;
}

.modal-body .form-check-input:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.modal-body .form-check-label {
    color: #9293a5;
    font-size: 0.875rem;
}

.modal-body a {
    color: #6366f1;
}

.modal-body a:hover {
    color: #818cf8;
}

.modal-body .btn-primary {
    background: #6366f1;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.modal-body .btn-primary:hover {
    background: #818cf8;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
}

/* Breadcrumb Navigasyon */
.breadcrumb {
    padding: 1rem 0;
    background: transparent;
}

.breadcrumb-item a {
    color: #9293a5;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6366f1;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #9293a5;
}

/* Sayfa Başlık */
.page-header {
    background: url('../images/header-bg.jpg') no-repeat center;
    background-size: cover;
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 37, 53, 0.8);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-description {
    color: #9293a5;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Mobil Menü Kullanıcı İşlemleri */
.user-info-mobile {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.user-info-mobile img {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-info-mobile .user-details {
    flex: 1;
}

.user-info-mobile .username {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.user-info-mobile .balance {
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
}

.user-actions-mobile {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eef0f2;
    transition: all 0.2s ease;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item i {
    width: 24px;
    margin-right: 12px;
    font-size: 16px;
    color: #6c757d;
}

.mobile-menu-item span {
    flex: 1;
    font-size: 14px;
}

.mobile-menu-item .badge {
    margin-left: 8px;
    font-size: 11px;
    padding: 4px 8px;
}

.mobile-menu-item:hover {
    background: #f8f9fa;
    color: #007bff;
}

.mobile-menu-item:hover i {
    color: #007bff;
}

.mobile-menu-item.text-danger:hover {
    background: #fff5f5;
    color: #dc3545;
}

.mobile-menu-item.text-danger:hover i {
    color: #dc3545;
}
/* Custom Dropdown Menü */
.hd-custom-dropdown {
    position: relative;
}

.hd-custom-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
}

.hd-custom-dropdown .nav-link:hover {
    color: #fff;
    background: rgba(88, 101, 242, 0.1);
}

.hd-custom-dropdown .nav-link i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s;
    margin-left: 4px;
}

.hd-custom-dropdown.active .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

.hd-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e2124;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.hd-custom-dropdown.active .hd-dropdown-content {
    display: block;
    animation: fadeInDown 0.2s ease-in-out;
}

.hd-dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.hd-dropdown-item:hover {
    background: rgba(88, 101, 242, 0.1);
    color: #fff;
}

.hd-dropdown-item i {
    color: #5865f2;
    width: 16px;
    text-align: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hesap İlanları Dropdown */
.hd-hesap-dropdown {
    position: relative;
}

.hd-hesap-dropdown .hd-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hd-hesap-dropdown .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s;
}

.hd-hesap-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e2124;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.hd-hesap-dropdown:hover .hd-hesap-menu {
    display: block;
    animation: fadeInDown 0.2s ease-in-out;
}

.hd-hesap-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
    text-decoration: none;
}

.hd-hesap-item:hover {
    background: rgba(88, 101, 242, 0.1);
    color: #fff;
}

.hd-hesap-item i {
    color: #5865f2;
    width: 16px;
    text-align: center;
}

/* Mobil Görünüm */
@media (max-width: 992px) {
    .hd-dropdown-content {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        width: 100%;
        animation: none;
    }

    .hd-custom-dropdown.active .hd-dropdown-content {
        animation: none;
    }

    .hd-dropdown-item {
        padding: 0.75rem;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 2px;
    }

    .hd-dropdown-item:hover {
        background: rgba(88, 101, 242, 0.1);
    }

    .hd-hesap-menu {
        position: static;
        background: #1a1c1e;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .hd-hesap-item {
        padding: 0.75rem;
        border-radius: 0;
    }

    .hd-hesap-item:hover {
        background: rgba(88, 101, 242, 0.05);
    }
} 
@charset "UTF-8";

/* Kategori Filtreleri */
.category-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #242535;
    border: 1px solid #363749;
    border-radius: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #2b2c3d;
    border: 1px solid #363749;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-item.active {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
    box-shadow: 0 0 0 1px #6366f1;
}

.category-item:hover {
    background: #363749;
    color: #fff;
}

.category-item i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    color: #6366f1;
}

.category-item:hover i {
    color: #fff;
}

.category-item.active i {
    color: #fff;
}

.category-item.active .count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-item .count {
    background: #363749;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Filtre Butonlari */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: #2b2c3d;
    border: 1px solid #363749;
    border-radius: 6px;
    color: #9293a5;
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #363749;
    color: #fff;
}

/* Sayfa Numaralari */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #2b2c3d;
    border: 1px solid #363749;
    border-radius: 6px;
    color: #9293a5;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-item .page-link:hover {
    background: #363749;
    color: #fff;
}

.page-item.active .page-link {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

/* Filtreler için mobil düzenlemeler */
@media (max-width: 768px) {
    .d-flex.justify-content-between.align-items-center {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem;
    }

    .filter-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        order: 1;
    }

    .listing-search {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        order: 2;
        display: flex;
        justify-content: center;
    }

    .listing-search input {
        width: 100%;
    }

    .listing-search button {
        right: 4px;
        padding: 0 1rem;
    }

    .filters-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
    }

    .filter-items-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
    }

    .filter-item {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .category-items-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
    }

    .category-item {
        width: 100%;
        justify-content: space-between;
        font-size: 0.85rem;
    }

    .category-item .count {
        font-size: 0.75rem;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }
}

/* Filtreler için genel stiller */
.filters-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #1e2124;
    padding: 1rem;
    border-radius: 8px;
}

.filter-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.filter-item:hover {
    background: rgba(88, 101, 242, 0.1);
    color: #fff;
}

.filter-item.active {
    background: #5865f2;
    color: #fff;
}

/* Arama Kutusu */
.listing-search {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
}

.listing-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #fff;
    transition: all 0.2s;
}

.listing-search input:focus {
    outline: none;
    border-color: #5865f2;
    background: rgba(255, 255, 255, 0.1);
}

.listing-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.listing-search button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 1.25rem;
    background: #5865f2;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.listing-search button:hover {
    background: #4f46e5;
    color: #fff;
}

.listing-search button i {
    font-size: 0.9rem;
} 
@charset "UTF-8";

/* Kontrol Paneli Stilleri */
.dashboard-container {
    margin: 1.5rem 0;
}

/* Sidebar */
.dashboard-sidebar {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1rem;
}

.user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2f3042;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    object-fit: cover;
}

.kp-user-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

/* Sidebar Menü */
.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0.25rem;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.menu-link:hover {
    background: #2b2c3d;
    color: #fff;
}

.menu-link.active {
    background: #6366f1;
    color: #fff;
}

.menu-link i {
    width: 16px;
    text-align: center;
    font-size: 1rem;
}

/* Ana İçerik */
.dashboard-content {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1.5rem;
}

/* Özet Kartları */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-card {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1rem;
}

.summary-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.summary-icon i {
    font-size: 1.25rem;
    color: #6366f1;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.summary-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Topluluk Seviyesi */
.community-level {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.community-level h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.level-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #6366f1, #4f46e5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.level-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.level-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.level-progress {
    width: 100%;
    height: 6px;
    background: #2b2c3d;
    border-radius: 3px;
    margin: 0.75rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #6366f1;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

/* İlan Özeti */
.kp-listing-summary {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1rem;
}

.kp-listing-summary h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.kp-listing-item {
    background: #1e1f2e;
    border: 1px solid #2f3042;
    border-radius: 6px;
    overflow: hidden;
}

.kp-listing-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.kp-listing-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.kp-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.kp-listing-content {
    flex: 1;
}

.kp-listing-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.25rem;
}

.kp-listing-category {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.kp-listing-stats {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
}

.kp-stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.kp-stat-item i {
    font-size: 0.875rem;
}

/* İlan yok mesajı */
.no-listing-message {
    text-align: center;
    padding: 2rem;
    background: #1e1f2e;
    border: 1px solid #2f3042;
    border-radius: 6px;
}

.no-listing-message i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    display: block;
}

.no-listing-message p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9375rem;
}

/* Kişisel Bilgiler Sayfası */
.info-message {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-message i {
    color: #6366f1;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.info-message p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.personal-info {
    background: #1e1f2e;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1.5rem;
}

.personal-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.info-group {
    margin-bottom: 1.25rem;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-group label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.info-group .info-value {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

/* Avatar Sayfası */
.avatar-section {
    background: #1e1f2e;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1.5rem;
}

.avatar-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.current-avatar {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.avatar-form {
    max-width: 400px;
    margin: 0 auto;
}

.upload-wrapper {
    margin-bottom: 1rem;
}

.file-input {
    display: none;
}

.upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.upload-btn:hover {
    background: #2b2c3d;
    border-color: #6366f1;
}

.upload-btn i {
    font-size: 1rem;
}

.upload-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.upload-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    margin: 0.25rem 0;
}

.save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #6366f1;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.save-btn:hover {
    background: #4f46e5;
}

.save-btn i {
    font-size: 1rem;
}

/* Sayfa Başlığı */
.page-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Şifre Input Grubu */
.password-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-group .info-value {
    flex: 1;
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: rgba(255, 255, 255, 0.9);
}

.password-toggle i {
    font-size: 1rem;
}

/* Form Genişliği */
.personal-info form {
    max-width: 600px;
}

.info-group input.info-value,
.info-group .password-input-group {
    width: 100%;
}

/* Fatura Tipi Seçici */
.invoice-type-selector {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.radio-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-container input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #2f3042;
    border-radius: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
}

.radio-container input[type="radio"]:checked {
    border-color: #6366f1;
}

.radio-container input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #6366f1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

/* Textarea Stili */
textarea.info-value {
    min-height: 100px;
    resize: vertical;
}

/* Güvenlik Seçenekleri */
.security-option {
    padding: 1.25rem;
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.security-option:last-child {
    margin-bottom: 0;
}

.security-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.security-title h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem;
}

.security-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2f3042;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #6366f1;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Güvenlik İpuçları */
.security-tips {
    padding-top: 1.5rem;
    border-top: 1px solid #2f3042;
}

.tips-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tips-list li:before {
    content: "•";
    color: #6366f1;
    position: absolute;
    left: 0.5rem;
}

/* Banka Hesapları */
.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.add-bank-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #6366f1;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-bank-btn:hover {
    background: #4f46e5;
}

.add-bank-btn i {
    font-size: 0.875rem;
}

.bank-form {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.bank-accounts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
    padding: 1rem;
}

.bank-info {
    flex: 1;
}

.bank-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.bank-name i {
    color: #6366f1;
}

.account-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.account-holder {
    margin-bottom: 0.25rem;
}

.iban {
    font-family: monospace;
    letter-spacing: 0.5px;
}

.delete-account {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.delete-account:hover {
    color: #ef4444;
}

.no-bank-account {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 6px;
}

.no-bank-account i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    display: block;
}

.no-bank-account p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 992px) {
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #2f3042;
    }

    .summary-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .summary-cards {
        grid-template-columns: 1fr;
    }

    .listing-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Erişim Kayıtları Tablosu */
.table-dark {
    background: #242535;
    border-radius: 6px;
    border: 1px solid #2f3042;
    margin: 0;
}

.table-dark thead th {
    background: #1e1f2d;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9375rem;
    border-bottom: 2px solid #2f3042;
    padding: 1rem;
}

.table-dark tbody td {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    border-color: #2f3042;
    padding: 1rem;
    vertical-align: middle;
}

.table-dark.table-hover tbody tr:hover {
    background: #2f3042;
    transition: background-color 0.2s ease;
}

.table-responsive {
    border-radius: 6px;
    overflow: hidden;
} 
/* İlan Detay Sayfası */
.ilan-detay-container {
    background: #242535;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* İlan Başlık */
.ilan-baslik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2f3042;
}

.ilan-baslik h1 {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.ilan-no {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* İlan İçerik Grid */
.ilan-icerik {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .ilan-icerik {
        grid-template-columns: 1fr;
    }
}

/* İlan Sol Panel */
.ilan-sol {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* İlan Üst Grid */
.ilan-ust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .ilan-ust-grid {
        grid-template-columns: 1fr;
    }
}

/* İlan Görseli */
.ilan-gorsel {
    background: #1e1f2d;
    border-radius: 6px;
    padding: 1rem;
}

.ilan-gorsel .carousel {
    border-radius: 4px;
    overflow: hidden;
}

.ilan-gorsel .carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.ilan-gorsel .carousel-control-prev,
.ilan-gorsel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1rem;
}

.ilan-gorsel .carousel-control-prev-icon,
.ilan-gorsel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* İlan Detay Listesi */
.ilan-detay-listesi {
    background: #1e1f2d;
    border-radius: 6px;
    padding: 1rem;
}

.ilan-detay-baslik {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.detay-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detay-liste li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #2f3042;
}

.detay-liste li:last-child {
    border-bottom: none;
}

.detay-liste li i {
    color: #6366f1;
    width: 16px;
    text-align: center;
}

/* İlan Bilgileri */
.ilan-bilgi-kutu {
    background: #1e1f2d;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.ilan-bilgi-baslik {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ilan-bilgi-baslik i {
    color: #6366f1;
}

.ilan-aciklama {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ilan-aciklama p {
    margin-bottom: 0.5rem;
}

.ilan-aciklama p:last-child {
    margin-bottom: 0;
}

/* Satıcı Bilgileri */
.satici-bilgileri {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.satici-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.satici-detay h3 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.satici-puan {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.satici-puan i {
    color: #fbbf24;
}

.satici-bilgileri a {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.satici-bilgileri a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Fiyat Bilgisi */
.fiyat-bilgi {
    text-align: center;
    padding: 1rem;
    background: #1e1f2d;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.fiyat-tutar {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Butonlar */
.ilan-butonlar {
    display: grid;
    gap: 0.75rem;
}

.btn-satin-al {
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-satin-al:hover {
    background: #4f46e5;
    color: #fff;
    text-decoration: none;
}

/* İletişim Butonları */
.iletisim-butonlar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-sohbet,
.btn-sms {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    color: #fff;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-sohbet:hover,
.btn-sms:hover {
    border-color: #6366f1;
}

/* İlan Özellikleri */
.ozellik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.ozellik-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1e1f2d;
    border-radius: 4px;
}

.ozellik-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #242535;
    border-radius: 4px;
    color: #6366f1;
}

.ozellik-detay {
    flex: 1;
}

.ozellik-baslik {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.125rem;
}

.ozellik-deger {
    font-size: 0.875rem;
    color: #fff;
}

/* Resim Modal */
#resimModal .modal-content {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    width: fit-content;
}

#resimModal .modal-header {
    border-bottom: 1px solid #2f3042;
    padding: 0.75rem;
}

#resimModal .btn-close {
    background: none;
    color: #fff;
    opacity: 0.7;
    padding: 1rem;
    margin: 0;
}

#resimModal .btn-close:hover {
    opacity: 1;
}

#resimModal .modal-dialog {
    max-width: fit-content;
}

#resimModal .modal-body {
    padding: 0;
}

#resimModal .carousel-item img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

#resimModal .carousel-control-prev,
#resimModal .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1rem;
}

#resimModal .carousel-control-prev-icon,
#resimModal .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Satıcı Rozetleri */
.satici-rozetler {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.satici-rozetler i {
    font-size: 1rem;
    color: #6366f1;
    cursor: help;
    transition: color 0.2s;
}

.satici-rozetler i:hover {
    color: #4f46e5;
}

.seviye-rozet {
    background: #6366f1;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: help;
}

/* Alt Butonlar */
.alt-butonlar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn-alt {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    height: 100%;
    min-height: 42px;
}

.btn-alt:hover {
    color: #fff;
    border-color: #6366f1;
}

.btn-alt i {
    font-size: 0.9375rem;
}

.satildi-banner {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.satildi-banner i {
    font-size: 1.25rem;
} 

.sure-banner {
    background: rgba( 51, 51, 102, 0.1);
    border: 1px solid rgba(51, 51, 102, 0.2);
    color: #CCFFFF;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.sure-banner i {
    font-size: 1.25rem;
} 

/* Paylaşım Menüsü */
.share-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.share-dropdown-content {
    position: absolute;
    right: 0;
    top: 120%;
    background: #1e2124;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.share-dropdown.active .share-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 0.9375rem;
}

.share-button i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* Platform özel renkleri */
.share-whatsapp {
    background: #25D366;
}

.share-whatsapp:hover {
    background: #1ea952;
}

.share-facebook {
    background: #1877F2;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-twitter {
    background: #1DA1F2;
}

.share-twitter:hover {
    background: #0d8bd9;
}

.share-telegram {
    background: #0088cc;
}

.share-telegram:hover {
    background: #0072ab;
}

.share-copy {
    background: #2b2c3d;
}

.share-copy:hover {
    background: #363749;
}

/* Kopyalandı bildirimi */
.copy-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #5865f2;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.copy-alert.show {
    opacity: 1;
    visibility: visible;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .share-dropdown-content {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        margin: 1rem;
        transform: translateY(100%);
    }

    .share-dropdown.active .share-dropdown-content {
        transform: translateY(0);
    }
}

/* Paylaş butonu için özel stil */
.share-dropdown .btn-alt {
    width: 100%;
    height: 100%;
} 
/* İlan Verme Formu */
.ilan-ver-container {
    background: #242535;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Sunucu ve Kategori Seçimi */
.sunucu-kategori {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.sunucu-select,
.kategori-select {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    border-radius: 4px;
    color: #fff;
    padding: 0.75rem;
    width: 100%;
    font-size: 0.9375rem;
}

.sunucu-select option,
.kategori-select option {
    background: #1e1f2d;
    color: #fff;
}

/* İlan Detayları */
.ilan-detay-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.form-control {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    border-radius: 4px;
    color: #fff;
    padding: 0.75rem;
    font-size: 0.9375rem;
}

.form-control:focus {
    border-color: #6366f1;
    outline: none;
}

/* Fiyat Hesaplama */
.fiyat-hesaplama {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: #1e1f2d;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.fiyat-grup {
    text-align: center;
}

.fiyat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.fiyat-deger {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

.komisyon {
    color: #ef4444;
}

.net-ucret {
    color: #10b981;
}

/* il-doping Seçenekleri */
.il-doping-secenekleri {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.il-doping-secenek {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    border-radius: 4px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.il-doping-secenek:hover {
    border-color: #6366f1;
}

.il-doping-secenek.active {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.il-doping-baslik {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.il-doping-baslik i {
    color: #6366f1;
}

.il-doping-fiyat {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Sözleşme */
.sozlesme {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    border-radius: 4px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.sozlesme-baslik {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.sozlesme-icerik {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 1rem;
    margin-bottom: 1rem;
}

.sozlesme-onay {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sozlesme-onay input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #2f3042;
    border-radius: 4px;
    cursor: pointer;
}

.sozlesme-onay label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
}

/* İlan Ekle Butonu */
.ilan-ekle-btn {
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.ilan-ekle-btn:hover {
    background: #4f46e5;
}

.ilan-ekle-btn:disabled {
    background: #2f3042;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .sunucu-kategori {
        grid-template-columns: 1fr;
    }
}

/* Quill Editor Dark Theme */
.ql-toolbar.ql-snow {
    background: #1e1f2d;
    border-color: #2f3042 !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.ql-container.ql-snow {
    background: #1e1f2d;
    border-color: #2f3042 !important;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #fff;
}

.ql-editor.ql-blank::before {
    color: rgba(255, 255, 255, 0.4);
}

.ql-snow .ql-stroke {
    stroke: rgba(255, 255, 255, 0.7);
}

.ql-snow .ql-fill {
    fill: rgba(255, 255, 255, 0.7);
}

.ql-snow .ql-picker {
    color: rgba(255, 255, 255, 0.7);
}

.ql-snow .ql-picker-options {
    background: #1e1f2d;
    border-color: #2f3042;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
    border-color: #2f3042;
}

.ql-snow .ql-picker-label:hover,
.ql-snow .ql-picker-item:hover {
    color: #6366f1;
}

.ql-snow .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-picker-label.ql-active .ql-stroke {
    stroke: #6366f1;
}

.ql-snow .ql-picker-item.ql-selected {
    color: #6366f1;
}

.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active {
    color: #6366f1;
}

.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke {
    stroke: #6366f1;
}

.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill {
    fill: #6366f1;
} 

.gorsel-yukleme {
    background: #1e1f2d;
    border-radius: 8px;
    padding: 1rem;
}

.yukleme-alani {
    border: 2px dashed #2f3042;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yukleme-alani:hover {
    border-color: #6366f1;
}

.yukleme-alani i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.yukleme-alani p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.gorsel-onizlemeler {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gorsel-onizleme {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #2f3042;
    aspect-ratio: 1;
}

.gorsel-onizleme img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gorsel-sil {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gorsel-sil:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}

/* Hazır Görseller */
.hazir-gorseller {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
    background: #1e1f2d;
    padding: 1rem;
    border-radius: 8px;
}

.hazir-gorsel {
    position: relative;
    border: 2px solid #2f3042;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    aspect-ratio: 1;
}

.hazir-gorsel:hover {
    border-color: #6366f1;
}

.hazir-gorsel.selected {
    border-color: #6366f1;
}

.hazir-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seçili Hazır Görsel */
.secili-hazir-gorsel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #6366f1;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    max-width: 300px;
}

.secili-hazir-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secili-hazir-gorsel .gorsel-sil {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.secili-hazir-gorsel .gorsel-sil:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}
/* Sohbet Container */
.sohbet-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 1.5rem;
    background: #242535;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: calc(100vh - 200px);
}

/* Sol Panel */
.sohbet-sol {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.sohbet-baslik {
    padding: 1rem;
    border-bottom: 1px solid #2f3042;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sohbet-baslik h2 {
    color: #fff;
    font-size: 1.125rem;
    margin: 0;
}

.yeni-sohbet-btn {
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.yeni-sohbet-btn:hover {
    background: #4f46e5;
}

.sohbet-arama {
    padding: 1rem;
    border-bottom: 1px solid #2f3042;
}

.arama-input {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 4px;
    color: #fff;
    padding: 0.75rem;
    width: 100%;
    font-size: 0.875rem;
}

.arama-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sohbet-listesi {
    flex: 1;
    overflow-y: auto;
}

.sohbet-item {
    padding: 1rem;
    border-bottom: 1px solid #2f3042;
    cursor: pointer;
    transition: all 0.2s;
}

.sohbet-item:hover {
    background: rgba(99, 102, 241, 0.1);
}

.sohbet-item.active {
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid #6366f1;
}

.sohbet-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.sohbet-item-kullanici {
    color: #fff;
    font-weight: 500;
    font-size: 0.9375rem;
}

.sohbet-item-saat {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.sohbet-item-mesaj {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Sağ Panel */
.sohbet-sag {
    background: #1e1f2d;
    border: 1px solid #2f3042;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.sohbet-header {
    padding: 1rem;
    border-bottom: 1px solid #2f3042;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sohbet-kullanici {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.sohbet-icerik {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mesaj {
    display: flex;
    flex-direction: column;
    max-width: 70%;
}

.mesaj.gelen {
    align-self: flex-start;
}

.mesaj.giden {
    align-self: flex-end;
}

.mesaj-icerik {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: #fff;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.mesaj.gelen .mesaj-icerik {
    background: #2f3042;
    border-bottom-left-radius: 4px;
}

.mesaj.giden .mesaj-icerik {
    background: #6366f1;
    border-bottom-right-radius: 4px;
}

.mesaj-saat {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.mesaj.gelen .mesaj-saat {
    margin-left: 0.5rem;
}

.mesaj.giden .mesaj-saat {
    margin-right: 0.5rem;
    text-align: right;
}

.sohbet-yazma {
    padding: 1rem;
    border-top: 1px solid #2f3042;
    display: flex;
    gap: 1rem;
}

.mesaj-input {
    flex: 1;
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 4px;
    color: #fff;
    padding: 0.75rem;
    font-size: 0.9375rem;
    resize: none;
    min-height: 45px;
    max-height: 120px;
}

.mesaj-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.gonder-btn {
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.gonder-btn:hover {
    background: #4f46e5;
}

/* Responsive */
@media (max-width: 768px) {
    .sohbet-container {
        grid-template-columns: 1fr;
    }

    .sohbet-sol {
        display: none;
    }

    .sohbet-sol.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
    }
} 
/* Header İkonları */
.header-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.25rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: #f3f4f6;
    position: relative;
    text-decoration: none !important;
}

.header-icon:hover {
    color: #4f46e5;
    background-color: #eef2ff;
    transform: translateY(-2px);
}

.header-icon .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 0.7rem;
    padding: 0.35rem 0.5rem;
    border: 2px solid #fff;
    background: #ef4444;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Kullanıcı Menüsü */
.dropdown {
    position: relative;
}

.user-menu {
    padding: 8px 14px;
    border-radius: 12px;
    background: #f3f4f6;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    min-width: 200px;
}

.user-menu:hover {
    background: #eef2ff;
}

.user-menu img {
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.user-menu .user-info {
    margin-left: 12px;
}

.user-menu .username {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 2px;
    line-height: 1.2;
}

.user-menu .balance {
    color: #4f46e5;
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1;
}

.user-menu .fa-chevron-down {
    color: #9ca3af;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    margin-left: 8px;
}

.user-menu[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menü */
.dropdown-menu {
    padding: 8px;
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    margin-top: 60px !important;
    transform-origin: top center;
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    box-shadow: -2px -2px 5px rgba(0,0,0,0.06);
}

.dropdown-menu.show {
    display: block;
    animation: slideDown 0.2s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 9px 14px;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-bottom: 2px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item i {
    width: 20px;
    font-size: 1.05rem;
    margin-right: 12px;
    color: #6b7280;
}

.dropdown-item span {
    color: #4b5563;
}

.dropdown-item:hover {
    background: #eef2ff;
}

.dropdown-item:hover i,
.dropdown-item:hover span {
    color: #4f46e5;
}

.dropdown-divider {
    margin: 8px 0;
    border-color: #e5e7eb;
}

.dropdown-item.text-danger {
    color: #dc2626;
}

.dropdown-item.text-danger i,
.dropdown-item.text-danger span {
    color: #dc2626;
}

.dropdown-item.text-danger:hover {
    background: #fef2f2;
}

.dropdown-item.text-danger:hover i,
.dropdown-item.text-danger:hover span {
    color: #dc2626;
} 
/* Satın Alma Container */
.purchase-container {
    background: #242535;
    border: 1px solid #2f3042;
    border-radius: 8px;
    padding: 2rem;
}

/* Başlık */
.purchase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2f3042;
}

.purchase-header h1 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.btn-back {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #6366f1;
}

/* İlan Özeti */
.listing-summary {
    padding: 1.5rem;
    background: #1e1f2e;
    border: 1px solid #2f3042;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.listing-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Satıcı Bilgileri */
.seller-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.seller-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #2f3042;
}

.seller-name {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.seller-level {
    background: #1e1f2e;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid #2f3042;
}

/* Fiyat Bilgisi */
.price-info {
    margin-top: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6366f1;
}

/* Form Stilleri */
.delivery-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1e1f2e;
    border: 1px solid #2f3042;
    border-radius: 6px;
    font-size: 1rem;
    color: #fff;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25);
}

.form-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Bakiye Bilgisi */
.balance-info {
    background: #1e1f2e;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #2f3042;
}

.current-balance,
.after-purchase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.after-purchase {
    border-top: 1px solid #2f3042;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* Teslimat Süresi */
.delivery-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* Butonlar */
.btn-purchase {
    width: 100%;
    padding: 1rem;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-purchase:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-purchase:disabled {
    background: #2f3042;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-add-balance {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #2b2c3d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #363749;
    transition: all 0.3s;
}

.btn-add-balance:hover {
    background: #363749;
    color: #fff;
    transform: translateY(-2px);
}

/* Uyarı Kutusu */
.alert {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    padding: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.alert-heading {
    color: #ffc107;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert ul {
    list-style-type: none;
}

.alert ul li::before {
    content: "•";
    color: #ffc107;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
} 