/* Gider Ekle Sayfası CSS */
#gider-ekle {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 20px;
}

#gider-ekle .modern-page-header {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
}

#gider-ekle .modern-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

#gider-ekle .modern-breadcrumb a {
    color: #fe6447;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    padding: 4px 8px;
    border-radius: 6px;
}

#gider-ekle .modern-breadcrumb a:hover {
    background: rgba(254, 100, 71, 0.1);
    color: #fe6447;
}

#gider-ekle .modern-breadcrumb i {
    font-size: 16px;
}

#gider-ekle .modern-breadcrumb .las.la-angle-right {
    color: #dee2e6;
    font-size: 12px;
}

#gider-ekle .modern-breadcrumb .active {
    color: #495057;
    font-weight: 600;
}

#gider-ekle .header-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

#gider-ekle .title-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

#gider-ekle .modern-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

#gider-ekle .modern-page-title i {
    font-size: 32px;
}

#gider-ekle .header-subtitle {
    color: #7f8c8d;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

#gider-ekle .modern-form-container {
    animation: slideUp 0.6s ease-out;
}

#gider-ekle .form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    overflow: hidden;
}

#gider-ekle .form-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px;
    border-bottom: 1px solid #f1f3f4;
}

#gider-ekle .form-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

#gider-ekle .form-title i {
    color: #fe6447;
    font-size: 24px;
}

#gider-ekle .form-subtitle {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

#gider-ekle .form-card-body {
    padding: 32px;
}

#gider-ekle .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

#gider-ekle .form-group-modern {
    display: flex;
    flex-direction: column;
}

#gider-ekle .form-group-modern.full-width {
    grid-column: 1 / -1;
}

#gider-ekle .modern-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    margin-bottom: 8px;
}

#gider-ekle .modern-label i {
    color: #fe6447;
    font-size: 16px;
}

#gider-ekle .required-star {
    color: #e74c3c;
    font-weight: 700;
}

#gider-ekle .optional-text {
    color: #7f8c8d;
    font-weight: 400;
    font-size: 12px;
}

#gider-ekle .modern-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    color: #495057;
    box-sizing: border-box;
}

#gider-ekle .modern-input:focus {
    outline: none;
    border-color: #fe6447;
    box-shadow: 0 0 0 4px rgba(254, 100, 71, 0.1);
    transform: translateY(-1px);
}

#gider-ekle .modern-input:valid {
    border-color: #28a745;
}

#gider-ekle .modern-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

#gider-ekle .modern-input.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

#gider-ekle .input-with-suffix {
    position: relative;
    display: flex;
    align-items: center;
}

#gider-ekle .input-suffix {
    position: absolute;
    right: 16px;
    color: #7f8c8d;
    font-weight: 600;
    font-size: 16px;
    pointer-events: none;
}

#gider-ekle .modern-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    color: #495057;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    box-sizing: border-box;
}

#gider-ekle .modern-textarea:focus {
    outline: none;
    border-color: #fe6447;
    box-shadow: 0 0 0 4px rgba(254, 100, 71, 0.1);
    transform: translateY(-1px);
}

#gider-ekle .input-hint {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 6px;
    line-height: 1.4;
}

#gider-ekle .file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
    position: relative;
}

#gider-ekle .file-upload-area:hover {
    border-color: #fe6447;
    background: rgba(254, 100, 71, 0.05);
}

#gider-ekle .file-upload-area.dragover {
    border-color: #fe6447;
    background: rgba(254, 100, 71, 0.1);
    transform: scale(1.02);
}

#gider-ekle .file-upload-area.file-selected {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

#gider-ekle .file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#gider-ekle .file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#gider-ekle .file-upload-content i {
    font-size: 48px;
    color: #fe6447;
    margin-bottom: 8px;
}

#gider-ekle .file-upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

#gider-ekle .file-upload-hint {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
}

#gider-ekle .form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f3f4;
}

#gider-ekle .modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

#gider-ekle .modern-btn-primary {
    background: linear-gradient(135deg, #fe6447 0%, #ff8a75 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(254, 100, 71, 0.3);
}

#gider-ekle .modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 100, 71, 0.4);
    color: white;
}

#gider-ekle .modern-btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
}

#gider-ekle .modern-btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #495057;
    transform: translateY(-1px);
}

#gider-ekle .save-button {
    min-width: 180px;
}

#gider-ekle .save-button .btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

#gider-ekle .save-button .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

#gider-ekle .save-button.loading .btn-content {
    display: none;
}

#gider-ekle .save-button.loading .btn-loading {
    display: flex;
}

#gider-ekle .spinner-border {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#gider-ekle .form-result {
    margin-top: 20px;
}

#gider-ekle .form-result .loader {
    text-align: center;
    padding: 20px;
}

#gider-ekle .form-result .sonuc {
    margin-top: 12px;
}

#gider-ekle .invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Gider Düzenle Sayfası CSS */
#gider-duzenle {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 20px;
}

#gider-duzenle .modern-page-header {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
}

#gider-duzenle .modern-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

#gider-duzenle .modern-breadcrumb a {
    color: #fe6447;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    padding: 4px 8px;
    border-radius: 6px;
}

#gider-duzenle .modern-breadcrumb a:hover {
    background: rgba(254, 100, 71, 0.1);
    color: #fe6447;
}

#gider-duzenle .modern-breadcrumb i {
    font-size: 16px;
}

#gider-duzenle .modern-breadcrumb .las.la-angle-right {
    color: #dee2e6;
    font-size: 12px;
}

#gider-duzenle .modern-breadcrumb .active {
    color: #495057;
    font-weight: 600;
}

#gider-duzenle .header-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

#gider-duzenle .title-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

#gider-duzenle .modern-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

#gider-duzenle .modern-page-title i {
    font-size: 32px;
}

#gider-duzenle .total-count-badge {
    background: linear-gradient(135deg, #fe6447 0%, #ff8a75 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

#gider-duzenle .header-subtitle {
    color: #7f8c8d;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

#gider-duzenle .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

#gider-duzenle .row > * {
    padding-right: 12px;
    padding-left: 12px;
}

#gider-duzenle .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

#gider-duzenle .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

#gider-duzenle .modern-form-container {
    animation: slideUp 0.6s ease-out;
}

#gider-duzenle .form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    overflow: hidden;
    transition: all 0.3s;
}

#gider-duzenle .form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

#gider-duzenle .form-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px;
    border-bottom: 1px solid #f1f3f4;
}

#gider-duzenle .form-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

#gider-duzenle .form-title i {
    color: #fe6447;
    font-size: 24px;
}

#gider-duzenle .form-subtitle {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

#gider-duzenle .form-card-body {
    padding: 32px;
}

#gider-duzenle .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

#gider-duzenle .form-group-modern {
    display: flex;
    flex-direction: column;
}

#gider-duzenle .form-group-modern.full-width {
    grid-column: 1 / -1;
}

#gider-duzenle .modern-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    margin-bottom: 8px;
}

#gider-duzenle .modern-label i {
    color: #fe6447;
    font-size: 16px;
}

#gider-duzenle .required-star {
    color: #e74c3c;
    font-weight: 700;
}

#gider-duzenle .optional-text {
    color: #7f8c8d;
    font-weight: 400;
    font-size: 12px;
}

#gider-duzenle .modern-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    color: #495057;
    box-sizing: border-box;
}

#gider-duzenle .modern-input:focus {
    outline: none;
    border-color: #fe6447;
    box-shadow: 0 0 0 4px rgba(254, 100, 71, 0.1);
    transform: translateY(-1px);
}

#gider-duzenle .modern-input:valid {
    border-color: #28a745;
}

#gider-duzenle .modern-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

#gider-duzenle .modern-input.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

#gider-duzenle .input-with-suffix {
    position: relative;
    display: flex;
    align-items: center;
}

#gider-duzenle .input-suffix {
    position: absolute;
    right: 16px;
    color: #7f8c8d;
    font-weight: 600;
    font-size: 16px;
    pointer-events: none;
}

#gider-duzenle .modern-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
    color: #495057;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    box-sizing: border-box;
}

#gider-duzenle .modern-textarea:focus {
    outline: none;
    border-color: #fe6447;
    box-shadow: 0 0 0 4px rgba(254, 100, 71, 0.1);
    transform: translateY(-1px);
}

#gider-duzenle .input-hint {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 6px;
    line-height: 1.4;
}

#gider-duzenle .current-file-info {
    margin-bottom: 16px;
}

#gider-duzenle .current-file-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

#gider-duzenle .current-file-card:hover {
    border-color: #fe6447;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 100, 71, 0.1);
}

#gider-duzenle .file-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fe6447 0%, #ff8a75 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(254, 100, 71, 0.3);
}

#gider-duzenle .file-details {
    flex: 1;
}

#gider-duzenle .file-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 16px;
}

#gider-duzenle .file-actions {
    display: flex;
    gap: 8px;
}

#gider-duzenle .file-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fe6447 0%, #ff8a75 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(254, 100, 71, 0.3);
}

#gider-duzenle .file-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 100, 71, 0.4);
    color: white;
}

#gider-duzenle .file-replace-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7f8c8d;
    font-size: 13px;
    padding: 12px 16px;
    background: rgba(254, 100, 71, 0.05);
    border-radius: 8px;
    border-left: 4px solid #fe6447;
}

#gider-duzenle .file-replace-info i {
    color: #fe6447;
    font-size: 16px;
}

#gider-duzenle .file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
    position: relative;
}

#gider-duzenle .file-upload-area:hover {
    border-color: #fe6447;
    background: rgba(254, 100, 71, 0.05);
}

#gider-duzenle .file-upload-area.dragover {
    border-color: #fe6447;
    background: rgba(254, 100, 71, 0.1);
    transform: scale(1.02);
}

#gider-duzenle .file-upload-area.file-selected {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

#gider-duzenle .file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#gider-duzenle .file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#gider-duzenle .file-upload-content i {
    font-size: 48px;
    color: #fe6447;
    margin-bottom: 8px;
}

#gider-duzenle .file-upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

#gider-duzenle .file-upload-hint {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
}

#gider-duzenle .form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f3f4;
}

#gider-duzenle .modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

#gider-duzenle .modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#gider-duzenle .modern-btn:hover::before {
    left: 100%;
}

#gider-duzenle .modern-btn-primary {
    background: linear-gradient(135deg, #fe6447 0%, #ff8a75 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(254, 100, 71, 0.3);
}

#gider-duzenle .modern-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 100, 71, 0.4);
    color: white;
}

#gider-duzenle .modern-btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
}

#gider-duzenle .modern-btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #495057;
    transform: translateY(-1px);
}

#gider-duzenle .save-button {
    min-width: 180px;
}

#gider-duzenle .save-button .btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

#gider-duzenle .save-button .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

#gider-duzenle .save-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

#gider-duzenle .save-button.loading .btn-content {
    display: none;
}

#gider-duzenle .save-button.loading .btn-loading {
    display: flex;
}

#gider-duzenle .spinner-border {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spinFast 0.8s linear infinite;
}

#gider-duzenle .info-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#gider-duzenle .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
}

#gider-duzenle .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

#gider-duzenle .info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

#gider-duzenle .info-label i {
    color: #fe6447;
    font-size: 16px;
}

#gider-duzenle .info-value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
}

#gider-duzenle .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
}

#gider-duzenle .status-badge.status-active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.3);
}

#gider-duzenle .status-badge.status-inactive {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

#gider-duzenle .status-badge i {
    font-size: 14px;
}

#gider-duzenle .quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#gider-duzenle .quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s;
    background: white;
    text-align: center;
}

#gider-duzenle .quick-action-btn:hover {
    background: rgba(254, 100, 71, 0.05);
    border-color: #fe6447;
    color: #fe6447;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 100, 71, 0.15);
}

#gider-duzenle .quick-action-btn.delete-btn:hover {
    background: rgba(220, 53, 69, 0.05);
    border-color: #dc3545;
    color: #dc3545;
}

#gider-duzenle .quick-action-btn i {
    font-size: 24px;
    margin-bottom: 4px;
}

#gider-duzenle .quick-action-btn span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

#gider-duzenle .mt-4 {
    margin-top: 24px;
}

#gider-duzenle .form-result {
    margin-top: 20px;
}

#gider-duzenle .form-result .loader {
    text-align: center;
    padding: 20px;
}

#gider-duzenle .form-result .sonuc {
    margin-top: 12px;
}

#gider-duzenle .invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Shared Animations and Notifications */
.modern-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    font-weight: 600;
    background: white;
    color: #212529;
}

.modern-notification.show {
    transform: translateX(0);
}

.modern-notification.notification-success {
    background: #28a745;
    border-left-color: #1e7e34;
    color: white;
}

.modern-notification.notification-error {
    background: #dc3545;
    border-left-color: #c82333;
    color: white;
}

.modern-notification.notification-warning {
    background: #ffc107;
    border-left-color: #e0a800;
    color: #212529;
}

.modern-notification.notification-info {
    background: #17a2b8;
    border-left-color: #138496;
    color: white;
}

.modern-notification i {
    font-size: 20px;
}

.notification-success i {
    color: white;
}

.notification-error i {
    color: white;
}

.notification-warning i {
    color: #212529;
}

.notification-info i {
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinFast {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #gider-duzenle .col-xxl-8 {
        width: 100%;
        margin-bottom: 24px;
    }
    
    #gider-duzenle .col-xxl-4 {
        width: 100%;
    }
}

@media (max-width: 992px) {
    #gider-ekle .form-grid,
    #gider-duzenle .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #gider-ekle .header-title-section,
    #gider-duzenle .header-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    #gider-ekle .title-container,
    #gider-duzenle .title-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    #gider-ekle .modern-page-title,
    #gider-duzenle .modern-page-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    #gider-ekle,
    #gider-duzenle {
        padding: 12px;
    }
    
    #gider-ekle .modern-page-header,
    #gider-duzenle .modern-page-header {
        padding: 20px;
    }
    
    #gider-ekle .form-card-body,
    #gider-duzenle .form-card-body {
        padding: 20px;
    }
    
    #gider-ekle .form-actions,
    #gider-duzenle .form-actions {
        flex-direction: column;
    }
    
    #gider-ekle .modern-btn,
    #gider-duzenle .modern-btn {
        justify-content: center;
    }
    
    #gider-duzenle .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    #gider-duzenle .quick-action-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 16px;
        text-align: left;
    }
    
    #gider-duzenle .quick-action-btn i {
        font-size: 20px;
        margin-bottom: 0;
    }
    
    #gider-duzenle .current-file-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    #gider-duzenle .file-details {
        width: 100%;
    }
    
    #gider-duzenle .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    #gider-duzenle .row > * {
        padding-right: 0;
        padding-left: 0;
    }
    
    .modern-notification {
        right: 12px;
        left: 12px;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .modern-notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    #gider-ekle .modern-breadcrumb,
    #gider-duzenle .modern-breadcrumb {
        flex-wrap: wrap;
    }
    
    #gider-ekle .modern-page-title,
    #gider-duzenle .modern-page-title {
        font-size: 20px;
    }
    
    #gider-ekle .form-title,
    #gider-duzenle .form-title {
        font-size: 18px;
    }
    
    #gider-ekle .file-upload-area,
    #gider-duzenle .file-upload-area {
        padding: 24px 16px;
    }
    
    #gider-ekle .file-upload-content i,
    #gider-duzenle .file-upload-content i {
        font-size: 36px;
    }
}

/* ==================== KDV TOGGLE STİLLERİ ==================== */
.kdv-toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.kdv-toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.kdv-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.kdv-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 28px;
}

.kdv-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kdv-toggle-switch input:checked + .kdv-toggle-slider {
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
}

.kdv-toggle-switch input:checked + .kdv-toggle-slider:before {
    transform: translateX(24px);
}

.kdv-toggle-label {
    font-weight: 500;
    color: #475569;
    font-size: 14px;
}

.kdv-fields-container {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    animation: kdvSlideDown 0.3s ease;
}

.kdv-fields-container.show {
    display: block;
}

@keyframes kdvSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.kdv-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.kdv-result-box {
    background: white;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e2e8f0;
}

.kdv-result-box label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 500;
}

.kdv-result-box .value {
    font-size: 18px;
    font-weight: 700;
    color: #fe492c;
}

/* ==================== FATURA GİRİŞ MODAL STİLLERİ ==================== */
.fatura-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.fatura-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.fatura-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: faturaFadeSlideUp 0.3s ease;
}

@keyframes faturaFadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fatura-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
    border-radius: 16px 16px 0 0;
    color: white;
}

.fatura-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fatura-modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.fatura-modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.fatura-modal-body {
    padding: 28px;
}

.fatura-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.fatura-info-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}

.fatura-info-group input,
.fatura-info-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.fatura-info-group input:focus,
.fatura-info-group select:focus {
    outline: none;
    border-color: #fe492c;
    box-shadow: 0 0 0 3px rgba(254, 73, 44, 0.1);
}

.fatura-kalemler-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.fatura-kalemler-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.fatura-kalem-ekle-btn {
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.fatura-kalem-ekle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 73, 44, 0.3);
}

.fatura-kalemler-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.fatura-kalemler-table th {
    background: #f8fafc;
    padding: 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
}

.fatura-kalemler-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.fatura-kalemler-table input,
.fatura-kalemler-table select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s;
}

.fatura-kalemler-table input:focus,
.fatura-kalemler-table select:focus {
    outline: none;
    border-color: #fe492c;
    box-shadow: 0 0 0 2px rgba(254, 73, 44, 0.1);
}

.fatura-kalem-sil-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.fatura-kalem-sil-btn:hover {
    background: #dc2626;
    color: white;
}

.fatura-toplam-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.fatura-toplam-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.fatura-toplam-row:last-child {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid #fe492c;
}

.fatura-toplam-row span:first-child {
    color: #64748b;
    font-weight: 500;
}

.fatura-toplam-row span:last-child {
    font-weight: 700;
    color: #1f2937;
    font-size: 16px;
}

.fatura-toplam-row:last-child span:last-child {
    color: #fe492c;
    font-size: 20px;
}

.fatura-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f8fafc;
    border-radius: 0 0 16px 16px;
}

.fatura-iptal-btn {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.fatura-iptal-btn:hover {
    background: #e2e8f0;
}

.fatura-kaydet-btn {
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(254, 73, 44, 0.3);
}

.fatura-kaydet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 73, 44, 0.4);
}

.fatura-kaydet-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .fatura-info-grid {
        grid-template-columns: 1fr;
    }
    
    .fatura-modal-content {
        max-height: 95vh;
        margin: 10px;
    }
    
    .fatura-kalemler-table {
        font-size: 12px;
    }
    
    .fatura-kalemler-table th,
    .fatura-kalemler-table td {
        padding: 8px;
    }
}

/* ==================== FATURA GİRİŞ FORM STİLLERİ (giderlistele) ==================== */
.fatura-section {
    margin-bottom: 24px;
}

.fatura-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fatura-section-title i {
    color: #fe492c;
}

.fatura-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fatura-col {
    flex: 1;
    min-width: 200px;
}

.fatura-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.fatura-label .required {
    color: #ef4444;
}

.fatura-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.fatura-input:focus {
    outline: none;
    border-color: #fe492c;
    box-shadow: 0 0 0 3px rgba(254, 73, 44, 0.1);
}

.fatura-kalemler-header {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    background: #f3f4f6;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.fatura-kalem-row {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 10px;
    align-items: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.fatura-kalem-row:hover {
    border-color: #fe492c;
    box-shadow: 0 2px 8px rgba(254, 73, 44, 0.1);
}

.fatura-kalem-col {
    flex: 1;
}

.fatura-kalem-col .fatura-input {
    padding: 10px 12px;
    font-size: 14px;
}

.fatura-miktar-wrapper {
    position: relative;
}

.fatura-miktar-wrapper .fatura-miktar {
    padding-right: 50px;
}

.fatura-birim-label {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    pointer-events: none;
}

.fatura-kalem-tutar {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
}

.fatura-kalem-sil {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s;
}

.fatura-kalem-sil:hover {
    background: rgba(239, 68, 68, 0.1);
}

.fatura-kalem-ekle-satir {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    color: #6b7280;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    margin-top: 12px;
}

.fatura-kalem-ekle-satir:hover {
    border-color: #fe492c;
    color: #fe492c;
    background: rgba(254, 73, 44, 0.05);
}

.fatura-toplamlar {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #bae6fd;
}

.fatura-toplam-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #93c5fd;
}

.fatura-toplam-row:last-child {
    border-bottom: none;
}

.fatura-toplam-label {
    color: #475569;
    font-size: 14px;
}

.fatura-toplam-value {
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
}

.fatura-toplam-value.fatura-kdv {
    color: #f59e0b;
}

.fatura-genel-toplam {
    background: white;
    margin-top: 12px;
    padding: 16px !important;
    border-radius: 8px;
    border-bottom: none;
}

.fatura-genel-toplam .fatura-toplam-label {
    font-weight: 700;
    font-size: 16px;
}

.fatura-genel-toplam .fatura-toplam-value {
    font-size: 24px;
    color: #fe492c;
}

.fatura-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.fatura-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
}

.fatura-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.fatura-btn-secondary:hover {
    background: #e5e7eb;
}

.fatura-btn-primary {
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
    color: white;
}

.fatura-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 73, 44, 0.4);
}

.fatura-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .fatura-modal-content {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .fatura-row {
        flex-direction: column;
    }
    
    .fatura-col {
        min-width: 100%;
    }
    
    .fatura-kalem-row {
        flex-wrap: wrap;
    }
    
    .fatura-kalem-col {
        min-width: calc(50% - 6px);
    }
    
    .fatura-kalemler-header {
        display: none;
    }
}

/* ==================== KDV HESAP KUTUSU STİLLERİ (giderekle) ==================== */
.kdv-hesap-kutusu {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px;
}

.kdv-hesap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #93c5fd;
}

.kdv-hesap-row:last-of-type {
    border-bottom: none;
}

.kdv-hesap-net {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
    border-bottom: none;
}

.kdv-hesap-label {
    color: #475569;
    font-size: 13px;
}

.kdv-hesap-value {
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
}

.kdv-hesap-value.kdv-tutar {
    color: #f59e0b;
}

.kdv-hesap-net .kdv-hesap-value {
    color: #fe492c;
    font-size: 18px;
}

.kdv-bilgi-notu {
    margin-top: 12px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    font-size: 12px;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.kdv-bilgi-notu i {
    font-size: 16px;
    color: #f59e0b;
    flex-shrink: 0;
}

/* ==================== ALT KATEGORİ BUTTON ve MODAL STİLLERİ ==================== */
.input-with-button {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.input-with-button .modern-input {
    flex: 1;
}

.btn-add-alt-kategori {
    min-width: 44px;
    height: auto;
    padding: 0 16px;
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add-alt-kategori:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 73, 44, 0.4);
    background: linear-gradient(135deg, #fe6447 0%, #fe492c 100%);
}

.btn-add-alt-kategori:active {
    transform: translateY(0);
}

.btn-add-alt-kategori i {
    font-size: 20px;
}

/* Alt Kategori Modal */
.alt-kategori-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
    animation: altKategoriFadeIn 0.3s ease;
}

@keyframes altKategoriFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.alt-kategori-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: altKategoriSlideUp 0.3s ease;
}

@keyframes altKategoriSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alt-kategori-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alt-kategori-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alt-kategori-modal-header h3 i {
    color: #fe492c;
}

.alt-kategori-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alt-kategori-modal-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.alt-kategori-modal-body {
    padding: 24px;
}

.kategori-info-badge {
    padding: 12px 16px;
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-align: center;
}

.alt-kategori-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .alt-kategori-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .alt-kategori-modal-header,
    .alt-kategori-modal-body {
        padding: 20px;
    }
}

/* ==================== FATURA ÜRÜN ARAMA DROPDOWN STİLLERİ ==================== */
.fatura-urun-arama-wrapper {
    position: relative;
}

.fatura-urun-input {
    width: 100%;
}

.fatura-stok-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 2px solid #fe492c;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: -2px;
}

.fatura-stok-item {
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    background: white;
}

.fatura-stok-item:hover {
    background: linear-gradient(135deg, rgba(254, 73, 44, 0.08), rgba(254, 100, 71, 0.05));
}

.fatura-stok-item:last-child {
    border-bottom: none;
}

.fatura-stok-item-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fatura-stok-item-name i {
    color: #fe492c;
}

.fatura-stok-item-birim {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.fatura-stok-custom {
    background: linear-gradient(135deg, rgba(254, 73, 44, 0.08), rgba(254, 100, 71, 0.03));
    border-left: 3px solid #fe492c;
}

.fatura-stok-custom:hover {
    background: linear-gradient(135deg, rgba(254, 73, 44, 0.15), rgba(254, 100, 71, 0.08));
}

.fatura-stok-custom .fatura-stok-item-name {
    color: #fe492c;
}

.fatura-stok-custom .fatura-stok-item-name i {
    color: #fe492c;
}

.fatura-stok-empty {
    padding: 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

/* Birim Dropdown Stilleri */
.fatura-birim-arama-wrapper {
    position: relative;
}

.fatura-birim-arama {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s;
}

.fatura-birim-arama:focus {
    outline: none;
    border-color: #fe492c;
    box-shadow: 0 0 0 2px rgba(254, 73, 44, 0.1);
}

.fatura-birim-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: -1px;
}

.fatura-birim-dropdown .fatura-stok-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.fatura-birim-dropdown .fatura-stok-item:hover {
    background: linear-gradient(135deg, rgba(254, 73, 44, 0.08), rgba(254, 100, 71, 0.05));
}

.fatura-birim-dropdown .fatura-stok-item:last-child {
    border-bottom: none;
}

.birim-donusum-bilgi {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
    padding: 4px 8px;
    background: #f0f9ff;
    border-radius: 4px;
    border-left: 3px solid #0ea5e9;
}

/* Fatura input focus state */
.fatura-urun-input:focus {
    border-color: #fe492c;
    box-shadow: 0 0 0 3px rgba(254, 73, 44, 0.1);
    border-radius: 8px 8px 0 0;
}

/* ==================== GİDER DETAY MODAL STİLLERİ ==================== */
.gider-detay-wrapper {
    padding: 0;
}

.gider-detay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.gider-detay-baslik {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.gider-detay-fiyat {
    font-size: 24px;
    font-weight: 800;
    color: #fe492c;
}

.gider-detay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.gider-detay-item {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #fe492c;
}

.gider-detay-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gider-detay-label i {
    color: #fe492c;
}

.gider-detay-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.gider-detay-kdv-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #f59e0b;
}

.gider-detay-kdv-title {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gider-detay-kdv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gider-detay-kdv-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
}

.gider-detay-kdv-item .kdv-label {
    font-size: 13px;
    color: #78350f;
}

.gider-detay-kdv-item .kdv-value {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
}

.gider-detay-kdv-item .kdv-haric {
    color: #10b981;
}

.gider-detay-kdv-item .kdv-tutar {
    color: #f59e0b;
}

.gider-detay-kdv-item.kdv-toplam {
    grid-column: span 2;
    background: white;
    border: 2px solid #f59e0b;
}

.gider-detay-kdv-item.kdv-toplam .kdv-value {
    font-size: 18px;
    color: #fe492c;
}

.gider-detay-kdv-note {
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    font-size: 12px;
    color: #78350f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gider-detay-kdv-note i {
    color: #f59e0b;
}

.gider-detay-aciklama {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.gider-detay-aciklama-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-top: 8px;
}

.gider-detay-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

/* KDV Info Cell in Table */
.kdv-info-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kdv-oran-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.kdv-tutarlar {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kdv-tutarlar .kdv-tutar {
    font-size: 11px;
    color: #f59e0b;
}

.kdv-tutarlar .kdv-haric {
    font-size: 11px;
    color: #10b981;
}

/* Action Button - View */
.action-btn.btn-view {
    background: linear-gradient(135deg, #fe492c 0%, #fe6447 100%);
    color: white;
}

.action-btn.btn-view:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(254, 73, 44, 0.4);
}

@media (max-width: 768px) {
    .gider-detay-grid {
        grid-template-columns: 1fr;
    }
    
    .gider-detay-kdv-grid {
        grid-template-columns: 1fr;
    }
    
    .gider-detay-kdv-item.kdv-toplam {
        grid-column: span 1;
    }
    
    .gider-detay-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .gider-detay-actions {
        flex-direction: column;
    }
}