:root {
    --primary: #a8156e;
    --primary-light: #c21a81;
    --accent: #c9a227;
    --bg-main: #f0f2f5;
    --bg-sidebar: rgba(168, 21, 110, 0.9);
    --text-main: #1a1a1a;
    --text-muted: #666;
    --white: #ffffff;
    --border: rgba(168, 21, 110, 0.1);
    --success: #1BC5BD;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    background-image:
        radial-gradient(at 0% 0%, rgba(168, 21, 110, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(201, 162, 39, 0.1) 0px, transparent 50%);
}

/* Background noise effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3column%3Efilter id='noiseFilter'%3Element%3EfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Floating circles in background */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floating 20s infinite alternate linear;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(168, 21, 110, 0.1);
    top: -300px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(201, 162, 39, 0.08);
    bottom: -200px;
    left: -100px;
}

@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 50px);
    }
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

/* Main App Container */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 25px;
}

.top-logo {
    height: 35px;
}

.top-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 15px;
    white-space: nowrap;
}

.top-brand span {
    color: var(--text-main);
    font-weight: 400;
}

.nav-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(168, 21, 110, 0.05);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 21, 110, 0.1);
    white-space: nowrap;
}

.nav-back-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 21, 110, 0.2);
}

.nav-back-link i {
    font-size: 0.8rem;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.top-bar {
    height: 70px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: var(--shadow);
}

.search-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.client-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f3f6f9;
    border-radius: 8px;
    padding: 5px 15px;
    width: 400px;
}

.client-box i {
    color: var(--primary);
    margin-right: 10px;
}

.client-box input {
    border: none;
    background: transparent;
    padding: 8px 0;
    width: 100%;
    outline: none;
    font-weight: 600;
}

.badge {
    background: #E1F0FF;
    color: #3699FF;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 1rem;
    padding: 1rem;
    flex-grow: 1;
    overflow: hidden;
}

.entry-panel,
.cart-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.panel-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

.shortcut-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #f3f6f9;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Form */
.entry-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.destination-branch-panel {
    margin: 1rem 1.5rem 0;
    padding: 1rem;
    border: 1px solid rgba(168, 21, 110, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.76);
}

.destination-branch-title {
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.88rem;
    font-weight: 700;
}

.destination-branch-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.destination-branch-btn {
    min-height: 44px;
    border: 1px solid rgba(168, 21, 110, 0.18);
    border-radius: 10px;
    background: #fff;
    color: #374151;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: 0.16s ease;
}

.destination-branch-btn:hover,
.destination-branch-btn.active {
    border-color: var(--primary);
    background: rgba(168, 21, 110, 0.1);
    color: var(--primary);
}

.destination-branch-display {
    min-height: 20px;
    margin-top: 0.75rem;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.flex-2 {
    flex: 2;
}

.flex-1 {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #7E8299;
}

/* Navigation & Transfer UI */
.btn-nav-back {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-nav-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}



.btn-clear {
    background: rgba(246, 78, 96, 0.05);
    color: #F64E60;
    border: 1px solid rgba(246, 78, 96, 0.2);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-clear:hover {
    background: #F64E60;
    color: white;
    border-color: #F64E60;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(246, 78, 96, 0.2);
}

.btn-clear i {
    font-size: 0.85rem;
}

.warehouse-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 5px;
    width: 100%;
}

.warehouse-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    /* İçeriğin taşmasını engeller */
}

.warehouse-card.active {
    border-color: var(--primary);
    background: rgba(168, 21, 110, 0.15);
    box-shadow: 0 0 10px rgba(168, 21, 110, 0.2);
}

.warehouse-card:hover {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.08);
}

.warehouse-card i {
    font-size: 0.9rem;
    margin-bottom: 3px;
    color: var(--primary);
}

.warehouse-card span {
    display: block;
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(168, 21, 110, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 15px rgba(168, 21, 110, 0.1);
}

.price-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.price-box {
    background: rgba(201, 162, 39, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.price-box .label {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 5px;
}

.price-box .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-add {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 21, 110, 0.2);
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 21, 110, 0.3);
}

/* Favorites */
.favorites-panel {
    padding: 1.5rem;
    margin-top: auto;
    background: #F9FAFB;
}

.favorites-panel h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.fav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fav-item {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px;
    font-size: 0.8rem;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.fav-item:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.fav-item:hover {
    border-color: var(--accent);
}

/* Cart Table */
.table-container {
    flex-grow: 1;
    overflow-y: auto;
}

#cart-table {
    width: 100%;
    border-collapse: collapse;
}

#cart-table th {
    position: sticky;
    top: 0;
    background: rgba(168, 21, 110, 0.05);
    padding: 12px 15px;
    text-align: left;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 600;
    z-index: 5;
}

#cart-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.item-row:hover {
    background: #fcfcfd;
}

.remove-btn {
    color: #F64E60;
    background: none;
    border: none;
    cursor: pointer;
}

/* Cart Footer */
.cart-footer {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    color: #7E8299;
    font-size: 0.85rem;
}

.total-row.grand {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px dashed var(--border);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.btn-transfer {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(168, 21, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-transfer:hover:not(:disabled) {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(201, 162, 39, 0.4);
    filter: brightness(1.05);
}

.btn-transfer:active {
    transform: translateY(-1px);
}

.btn-transfer:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #e0e0e0;
    color: #999;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5vh auto;
    padding: 2rem;
    border-radius: 16px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.modal-header p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 1.5rem;
}

#belediye-options {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    width: 100%;
}

#belediye-options .price-option-card {
    height: 50px !important;
    min-height: 50px !important;
    padding: 5px !important;
    font-size: 0.75rem !important;
    background: rgba(168, 21, 110, 0.05) !important;
    border: 1px solid rgba(168, 21, 110, 0.2) !important;
    color: var(--primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    font-weight: bold !important;
}

#belediye-options .price-option-card:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(168, 21, 110, 0.2) !important;
}

.price-option-card {
    background: #f8f9fa;
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-option-card:hover {
    border-color: var(--primary);
    background: rgba(168, 21, 110, 0.05);
    transform: translateX(5px);
}

.price-option-info .source-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price-option-info .price-def {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
}

.price-option-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-secondary {
    background: #eee;
    color: #444;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Search Autocomplete */
.search-container {
    position: relative;
    width: 100%;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
}

.search-result-item:hover,
.search-result-item.active {
    background: rgba(168, 21, 110, 0.08);
}

.search-result-item .item-name {
    display: block;
    font-weight: 600;
}

.search-result-item .item-code {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #323248;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    transform: translateY(200%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Preview Modal Styles */
#preview-modal .modal-content {
    border-radius: 12px;
    overflow: hidden;
}

#preview-modal .modal-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
}

#preview-modal .modal-body {
    scrollbar-width: thin;
}

#preview-content .logo-container img {
    width: 40mm;
    filter: contrast(150%) grayscale(1);
}

#preview-content .receipt-header,
#preview-content .receipt-meta,
#preview-content .receipt-footer,
#preview-content .thanks-msg {
    text-align: center;
}

#preview-content .receipt-item {
    border-bottom: 1px dotted #ccc;
    padding: 5px 0;
}

#preview-content .total-row,
#preview-content .grand-total-box {
    display: flex;
    justify-content: space-between;
}

#preview-content .grand-total-box {
    border-top: 2px solid #000;
    margin-top: 5px;
    padding-top: 5px;
    font-size: 16px;
    font-weight: bold;
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(168, 21, 110, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 30000;
    backdrop-filter: blur(10px);
}

.success-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.success-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-card h1 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--success);
    animation: progress 3s linear forwards;
}

@keyframes progress {
    to {
        width: 100%;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ------------------------------------------------------------------
   PRINT STYLES (80mm Thermal Printer)
   ------------------------------------------------------------------ */
@media print {
    @page {
        size: 80mm auto;
        margin: 0;
    }

    body {
        width: 80mm;
        margin: 0;
        padding: 0;
        background: none;
        color: #000 !important; /* Force Black */
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Gizlenecek Elemanlar */
    .app-container,
    .orb,
    .toast,
    .modal,
    .success-overlay,
    #duplicate-modal,
    #belediye-modal,
    #price-modal,
    #preview-modal {
        display: none !important;
    }

    /* Print Area (Fiş) */
    #print-area {
        display: block !important;
        width: 76mm;
        /* Kenar boşluğu payı */
        margin: 0 auto;
        font-family: 'Courier New', Courier, monospace;
        /* Termal yazıcıda en net */
        font-size: 14px;
        font-weight: 600; /* Biraz daha kalın */
    }

    .print-copy-wrapper {
        margin-bottom: 5mm;
        page-break-after: always;
        border-bottom: 2px dashed #000; /* Kalınlaştırıldı */
        padding-bottom: 5mm;
    }

    .print-copy-wrapper:last-child {
        page-break-after: auto;
        border-bottom: none;
    }

    .receipt-header {
        text-align: center;
        margin-bottom: 5px;
    }

    .logo-container img {
        width: 40mm;
        max-width: 100%;
        filter: grayscale(100%) contrast(200%) brightness(0.8); /* Daha koyu logo */
    }

    .divider {
        text-align: center;
        margin: 5px 0;
        font-weight: 900; /* En kalın */
        color: #000;
    }

    .receipt-meta {
        font-size: 14px;
        text-align: center;
        font-weight: 700;
        color: #000;
    }

    .receipt-body {
        margin: 5px 0;
    }

    .receipt-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;
        border-bottom: 1px dotted #000; /* Siyah yapıldı */
        padding-bottom: 2px;
    }

    .receipt-item .item-name {
        font-weight: 800; /* Daha kalın */
        font-size: 14px;
        color: #000;
        text-transform: uppercase;
    }

    .receipt-item .item-details {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 600;
        color: #000;
    }

    .receipt-footer {
        margin-top: 10px;
    }

    .total-row {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 800; /* Kalın */
        color: #000;
    }

    .grand-total-box {
        display: flex;
        justify-content: space-between;
        font-size: 18px; /* Büyütüldü */
        font-weight: 900; /* En kalın */
        margin-top: 5px;
        border-top: 3px solid #000; /* Kalınlaştırıldı */
        padding-top: 5px;
        color: #000;
    }

    .signature-section {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
        gap: 10px;
    }

    .signature-box {
        text-align: center;
        flex: 1;
    }

    .signature-box span {
        font-size: 12px; /* Okunurluk arttırıldı */
        font-weight: 600;
        color: #000;
    }

    .sig-line {
        height: 1px;
        background: #000;
        margin-top: 25px; /* İmza alanı genişletildi */
        width: 100%;
    }

    .thanks-msg {
        text-align: center;
        margin-top: 10px;
        font-size: 12px;
        font-weight: 600;
        font-style: italic;
        color: #000;
    }
}
