/* Genel Stil */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}
body {
margin-bottom: 60px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
white-space: nowrap;
line-height: 60px;
}
/* Navbar */
.navbar-brand {
font-size: 1.2rem;
}
/* Card */
.card {
border: none;
border-radius: 8px;
}
.card-header {
border-radius: 8px 8px 0 0 !important;
}
/* Favorite Cards */
.favorite-card {
transition: transform 0.2s, box-shadow 0.2s;
}
.favorite-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
/* Select2 Customization */
.select2-container--bootstrap-5 .select2-selection {
min-height: 38px;
}
/* Table Styling */
.table {
margin-bottom: 0;
}
.table thead th {
font-weight: 600;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.5px;
border-bottom: 2px solid #dee2e6;
}
.table tbody td {
vertical-align: middle;
font-size: 0.95rem;
}
/* MESAFE RENK SKALASI - NEGATİF (Fiyat altta, iyi durum) */
.distance-very-negative {
color: #ffffff !important;
font-weight: 700 !important;
background-color: #006400 !important;
padding: 8px 12px !important;
border-radius: 4px;
}
.distance-negative {
color: #ffffff !important;
font-weight: 600 !important;
background-color: #228B22 !important;
padding: 8px 12px !important;
border-radius: 4px;
}
.distance-slightly-negative {
color: #ffffff !important;
font-weight: 500 !important;
background-color: #32CD32 !important;
padding: 8px 12px !important;
border-radius: 4px;
}
/* MESAFE RENK SKALASI - NÖTR */
.distance-neutral {
color: #6c757d !important;
font-weight: 500 !important;
background-color: #f8f9fa !important;
padding: 8px 12px !important;
border-radius: 4px;
}
/* MESAFE RENK SKALASI - POZİTİF (Fiyat üstte, risk) */
.distance-slightly-positive {
color: #ffffff !important;
font-weight: 500 !important;
background-color: #FFA500 !important;
padding: 8px 12px !important;
border-radius: 4px;
}
.distance-positive {
color: #ffffff !important;
font-weight: 600 !important;
background-color: #FF6347 !important;
padding: 8px 12px !important;
border-radius: 4px;
}
.distance-very-positive {
color: #ffffff !important;
font-weight: 700 !important;
background-color: #DC143C !important;
padding: 8px 12px !important;
border-radius: 4px;
}
.distance-cell {
font-family: 'Courier New', monospace;
transition: all 0.2s ease;
}
/* Price Display */
.price-display {
font-family: 'Courier New', monospace;
font-size: 0.9rem;
}
/* Button Styling */
.btn {
border-radius: 6px;
font-weight: 500;
}
.btn-group-sm > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
}
/* Alert Styling */
.alert {
border-radius: 8px;
border: none;
}
/* Badge Styling */
.badge {
font-weight: 500;
padding: 0.35em 0.65em;
}
/* Loading Spinner */
.spinner-border-sm {
width: 1rem;
height: 1rem;
border-width: 0.15em;
}
/* Modal */
.modal-content {
border-radius: 8px;
border: none;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.modal-header {
border-bottom: 2px solid #dee2e6;
}
.modal-footer {
border-top: 2px solid #dee2e6;
}
/* Progress Bar */
.progress {
border-radius: 8px;
background-color: #e9ecef;
}
.progress-bar {
border-radius: 8px;
}
/* Empty State */
#emptyState {
padding: 3rem 0;
}
#emptyState h4 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
/* Summary Box */
#summaryBox {
border-radius: 8px;
border-left: 4px solid #0dcaf0;
}
/* Responsive */
@media (max-width: 768px) {
.table {
font-size: 0.85rem;
}
.table thead th {
font-size: 0.75rem;
padding: 0.5rem;
}
.table tbody td {
padding: 0.5rem;
}
h3 {
font-size: 1.5rem;
}
}
/* Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.3s ease-in;
}
/* Hover Effects */
.table-hover tbody tr:hover {
background-color: rgba(0, 123, 255, 0.05);
cursor: pointer;
}
.btn:hover {
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: all 0.2s;
}
/* Stats Cards */
.card.bg-primary,
.card.bg-success,
.card.bg-warning {
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card.bg-primary h3,
.card.bg-success h3,
.card.bg-warning h3 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}