/* assets/satis.css */

.sales-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    border-top: 5px solid #10b981; /* Zümrüt Yeşili */
}

.sales-header {
    font-size: 1.3rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 25px;
    border-bottom: 2px solid #a7f3d0;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #374151; }

/* Özel Inputlar */
.inp-text {
    width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 1rem; box-sizing: border-box; transition: 0.3s;
}
.inp-text:focus { border-color: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); outline: none; }

.inp-money {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #047857;
    background-color: #ecfdf5;
    border: 1px solid #6ee7b7;
    text-align: right;
}

/* Toplam Tutar Kutusu */
.total-box {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.4);
}
.total-box .label { font-size: 0.9rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.total-box .value { font-size: 2.5rem; font-weight: 800; margin-top: 5px; }

.btn-sell {
    width: 100%;
    padding: 15px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    transition: transform 0.2s;
}
.btn-sell:hover { background: #059669; transform: translateY(-3px); }

/* Select2 Düzenlemesi */
.select2-container .select2-selection--single { height: 45px !important; border-radius: 8px !important; border-color: #d1d5db !important; display: flex; align-items: center; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 43px !important; }