/* Stock Transfer List Styles */
.stock-transfer-list-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title i {
    font-size: 2.2rem;
}

.page-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.loading-container p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
}

/* Filter Card */
.filter-card {
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.filter-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #007bff;
}

/* Transfer List Card */
.transfer-list-card {
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.transfer-list-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Data Grid Styles */
.rz-datagrid {
    border: none !important;
    border-radius: 0 0 12px 12px !important;
}

.rz-datagrid-header {
    background: #f8f9fa !important;
    border-bottom: 2px solid #dee2e6 !important;
}

.rz-datagrid-header-cell {
    font-weight: 600 !important;
    color: #495057 !important;
    padding: 12px 8px !important;
}

.rz-datagrid-body-row {
    transition: background-color 0.2s ease !important;
}

.rz-datagrid-body-row:hover {
    background-color: #f8f9fa !important;
}

.rz-datagrid-body-cell {
    padding: 10px 8px !important;
    border-bottom: 1px solid #f1f3f4 !important;
}

/* Badge Styles */
.rz-badge {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
}

/* Button Styles - Modern Renk Paleti */
.rz-button {
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.rz-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Success Button Override */
.rz-button.rz-success {
    background: var(--gradient-success-modern) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.rz-button.rz-success:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}

/* Light Button Override */
.rz-button.rz-light {
    background: rgba(248, 250, 252, 0.8) !important;
    color: #1e293b !important;
    border: 1px solid rgba(203, 213, 225, 0.6) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.rz-button.rz-light:hover {
    background: rgba(248, 250, 252, 0.9) !important;
    border-color: rgba(203, 213, 225, 0.8) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}



/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i {
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #495057;
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0 0 25px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stock-transfer-list-container {
        padding: 15px;
    }
    
    .page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title i {
        font-size: 1.8rem;
    }
    
    .transfer-list-card .card-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .rz-datagrid-header-cell,
    .rz-datagrid-body-cell {
        padding: 8px 4px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .filter-card .card-header,
    .transfer-list-card .card-header {
        padding: 12px 15px;
    }
    
    .empty-state {
        padding: 40px 15px;
    }
    
    .empty-state h3 {
        font-size: 1.3rem;
    }
    
    .empty-state p {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stock-transfer-list-container > * {
    animation: fadeIn 0.5s ease-out;
}

/* Custom Scrollbar - Modern Gradient */
.rz-datagrid-body::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

.rz-datagrid-body::-webkit-scrollbar-track {
    background: #0f172a;
    border-radius: 6px;
}

.rz-datagrid-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6 0%, #06b6d4 50%, #10b981 100%);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rz-datagrid-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb 0%, #0891b2 50%, #059669 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
