@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%;
} 