@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #4A90E2;
    --color-primary-dark: #357ABD;
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-danger: #FF5252;
    --color-muted: #999999;
    --color-text: #333333;
    --color-text-secondary: #666666;
    --color-surface: #FFFFFF;
    --color-background: linear-gradient(180deg, #F8F2FE 0%, #FFFFFF 100%);
    --radius-xs: 8px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(74, 144, 226, 0.25);
    --transition: all 0.2s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--color-text);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

input, textarea, select {
    font: inherit;
    border-radius: var(--radius-sm);
    border: 1px solid #E0E0E0;
    padding: 12px;
    width: 100%;
    color: var(--color-text);
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.tech-app-body {
    min-height: 100vh;
}

.tech-app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 84px; /* bottom navigation space */
}

.tech-main {
    flex: 1;
    width: 100%;
}

.dashboard-container,
.pano-kapsayici {
    width: 100%;
    max-width: 100%;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

/* ------------------------------------------------
   Header
--------------------------------------------------- */
.header-section,
.baslik-bolumu {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-section,
.profil-alani {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-image,
.profil-gorseli {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.profile-info,
.profil-bilgisi {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-name,
.uygulama-adi {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.user-role,
.kullanici-rolu {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.notification-icon,
.bildirim-simgesi {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(74, 144, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.notification-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
}

.notification-badge-count,
.bildirim-badgesi {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-danger);
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
}

/* ------------------------------------------------
   Welcome Section
--------------------------------------------------- */
.welcome-section,
.karsilama-bolumu {
    width: 100%;
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.welcome-text,
.karsilama-baslik {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.online-toggle,
.cevrimici-anahtar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label,
.anahtar-etiketi {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.status-active {
    color: var(--color-success);
    font-weight: 600;
}

.switch,
.anahtar-kapsayici {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider,
.anahtar-kaydirici {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: var(--color-success);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* ------------------------------------------------
   Highlight Cards
--------------------------------------------------- */
.earnings-card,
.kazanc-karti {
    margin: 0 20px 20px 20px;
    padding: 24px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-md);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.earnings-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.35);
}

.earnings-icon,
.kazanc-simgesi {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-amount,
.kazanc-tutar {
    font-size: 34px;
    font-weight: 700;
}

.earnings-period,
.kazanc-donem {
    font-size: 14px;
    opacity: 0.85;
}

.earnings-content,
.kazanc-icerik {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

/* ------------------------------------------------
   Summary Chips
--------------------------------------------------- */
.job-summary-cards,
.ozet-kartlar {
    margin: 0 20px 20px 20px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.job-summary-cards::-webkit-scrollbar {
    display: none;
}

.summary-card,
.ozet-kart {
    min-width: 142px;
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.summary-icon,
.ozet-simge {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-text,
.ozet-metin {
    font-size: 13px;
    font-weight: 600;
}

.pending-card,
.bekleyen-kart {
    background: #FFF3E0;
    color: #FF9800;
}

.active-card,
.aktif-kart {
    background: #E3F2FD;
    color: var(--color-primary);
}

.past-card,
.gecmis-kart {
    background: #E8F5E9;
    color: var(--color-success);
}

.card-close {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 18px;
    color: var(--color-muted);
    cursor: pointer;
}

/* ------------------------------------------------
   Job Sections
--------------------------------------------------- */
.job-section,
.is-bolumu {
    width: 100%;
    padding: 0 20px 20px 20px;
}

.section-title,
.bolum-baslik {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.job-list + .job-list {
    margin-top: 16px;
}

.job-card,
.is-karti {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.job-details,
.is-detay {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-service,
.is-hizmet {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.job-info,
.is-bilgi {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.job-info svg {
    flex-shrink: 0;
}

.job-action,
.is-eylem {
    display: flex;
    align-items: center;
    gap: 12px;
}

.view-details,
.ayrinti-baglanti {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.accept-btn,
.kabul-buton {
    background: var(--color-success);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.accept-btn:hover {
    background: #45a049;
}

.job-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.job-status-badge.pending {
    background: #FFF3E0;
    color: var(--color-warning);
}

.job-status-badge.accepted {
    background: #E8F5E9;
    color: var(--color-success);
}

.job-status-badge.completed {
    background: #E3F2FD;
    color: var(--color-primary);
}

/* ------------------------------------------------
   Tabs / Filters
--------------------------------------------------- */
.tabs-section {
    width: 100%;
    padding: 0 20px 16px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-section::-webkit-scrollbar {
    display: none;
}

.tab-button {
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    background: #F1F3FF;
    color: var(--color-text-secondary);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.tab-button.active {
    background: var(--color-primary);
    color: #fff;
}

.tab-content {
    display: none;
    width: 100%;
    padding: 0 20px 16px 20px;
}

.tab-content.active {
    display: block;
}

/* ------------------------------------------------
   Stats & Wallet
--------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.stat-card.primary {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #fff;
}

.stat-card.success {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
}

.stat-card .stat-label {
    font-size: 13px;
    opacity: 0.8;
}

.stat-card .stat-value {
    font-size: 24px;
    font-weight: 700;
}

.wallet-card {
    background: linear-gradient(135deg, #F8F2FE 0%, #E8E0F5 100%);
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}

.wallet-card .card-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.wallet-card .card-account {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.wallet-card .card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-success);
    font-weight: 600;
}

.send-bank-button {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-success) 0%, #45A049 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.send-bank-button:hover {
    background: linear-gradient(135deg, #45A049 0%, #3C8A3E 100%);
}

.history-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-success);
}

/* ------------------------------------------------
   Profile / Settings
--------------------------------------------------- */
.profile-card,
.info-card,
.settings-section,
.documents-list .document-item,
.job-type-item,
.validation-section,
.info-list {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.profile-card {
    display: flex;
    gap: 16px;
    align-items: center;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.profile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
}

.profile-email {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.account-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #F5F5F5;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--color-text-secondary);
}

.status-active {
    color: var(--color-success);
    font-weight: 600;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(74, 144, 226, 0.12);
    color: var(--color-primary);
    flex-shrink: 0;
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-title {
    font-size: 16px;
    font-weight: 600;
}

.menu-description {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.menu-arrow {
    color: var(--color-muted);
}

.delete-button {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-danger);
    color: var(--color-danger);
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.delete-button:hover {
    background: rgba(255, 82, 82, 0.08);
}

.save-changes-button {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

.save-changes-button:hover {
    background: var(--color-primary-dark);
}

/* ------------------------------------------------
   Calendar / Schedule
--------------------------------------------------- */
.calendar-section {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.month-year {
    font-size: 18px;
    font-weight: 700;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: var(--transition);
}

.nav-arrow:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(74, 144, 226, 0.1);
}

.weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-muted);
    padding: 6px 0;
}

.day {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.day:hover {
    background: rgba(74, 144, 226, 0.1);
}

.day.active {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
}

.day.other-month {
    color: rgba(153, 153, 153, 0.5);
}

/* İş olan gün: arka plan renkli (Schedule sayfası) */
.day.has-jobs {
    position: relative;
    background: #EFF6FF;
}

.day.active.has-jobs {
    background: var(--color-primary, #4A90E2);
    color: #FFFFFF;
}

.day.has-jobs::after {
    content: "";
    position: absolute;
    bottom: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.scheduled-jobs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.job-time {
    min-width: 70px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.job-content {
    flex: 1;
}

.job-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.job-location {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.job-client {
    font-size: 12px;
    color: var(--color-muted);
}

.no-data-placeholder,
.veri-yok {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-muted);
    font-size: 14px;
}

/* ------------------------------------------------
   Notifications (modal-style)
--------------------------------------------------- */
.notification-modal,
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: flex-end;
    align-items: stretch;
}

.notification-modal.show,
.modal-overlay.show {
    display: flex;
}

.notification-content,
.modal-content {
    background: #fff;
    width: 100%;
    max-height: 80vh;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.notification-header,
.modal-header {
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-title,
.modal-title {
    font-size: 20px;
    font-weight: 700;
}

.notification-list {
    flex: 1;
    overflow-y: auto;
}

.notification-item {
    padding: 16px 20px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.notification-item:hover {
    background: rgba(74, 144, 226, 0.05);
}

.notification-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon-wrapper.info { background: #E3F2FD; color: var(--color-primary); }
.notification-icon-wrapper.success { background: #E8F5E9; color: var(--color-success); }
.notification-icon-wrapper.warning { background: #FFF3E0; color: var(--color-warning); }
.notification-icon-wrapper.danger { background: #FFEBEE; color: var(--color-danger); }

.notification-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.notification-item-message {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.notification-item-time {
    font-size: 12px;
    color: var(--color-muted);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ------------------------------------------------
   Bottom Navigation
--------------------------------------------------- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0 18px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 900;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-muted);
    transition: var(--transition);
}

.nav-item svg {
    width: 24px;
    height: 24px;
}

.nav-item.active {
    color: var(--color-primary);
}

.nav-item.active svg path,
.nav-item.active svg circle,
.nav-item.active svg rect,
.nav-item.active svg line,
.nav-item.active svg polyline {
    stroke: var(--color-primary);
    fill: var(--color-primary);
}

.nav-item__label {
    font-size: 11px;
    font-weight: 600;
}

.add-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    margin-top: -28px;
}

.add-button svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* ------------------------------------------------
   Buttons / Utilities
--------------------------------------------------- */
.tech-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
}

.tech-btn.primary {
    background: var(--color-primary);
    color: #fff;
}

.tech-btn.primary:hover {
    background: var(--color-primary-dark);
}

.tech-btn.secondary {
    background: rgba(74, 144, 226, 0.12);
    color: var(--color-primary);
}

.tech-btn.secondary:hover {
    background: rgba(74, 144, 226, 0.2);
}

.tech-btn.outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.tech-btn.outline:hover {
    background: rgba(74, 144, 226, 0.08);
}

.back-button {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid #E0E0E0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--color-text);
    transition: var(--transition);
}

.back-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
}

.header-spacer {
    width: 42px;
    height: 42px;
}

.badge-count {
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    background: rgba(74, 144, 226, 0.15);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.info-note {
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(74, 144, 226, 0.1);
    color: var(--color-text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

.tip-box {
    padding: 12px;
    border-left: 3px solid var(--color-warning);
    background: #FFF9E6;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: #7A5E25;
}

.list-divider {
    width: calc(100% - 40px);
    margin: 12px 20px;
    height: 1px;
    background: #F0F0F0;
}

/* ------------------------------------------------
   Page loader / transitions
--------------------------------------------------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(248, 242, 254, 0.92);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-spinner {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 4px solid rgba(74, 144, 226, 0.25);
    border-top-color: var(--color-primary);
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tech-fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------
   Responsive tweaks
--------------------------------------------------- */
@media (max-width: 520px) {
    .welcome-text {
        font-size: 22px;
    }

    .earnings-amount {
        font-size: 30px;
    }

    .summary-card,
    .ozet-kart {
        min-width: 120px;
    }

    .page-title {
        font-size: 20px;
    }

    .job-service {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .earnings-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-summary-cards {
        margin: 0 16px 16px;
    }

    .job-card {
        padding: 14px;
    }
}

/* ------------------------------------------------
   Technician Auth / Login Sayfası (technician/login.html ile aynı)
--------------------------------------------------- */
body.technician-auth-body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #F8F2FE;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body.technician-auth-body .login-container {
    width: 100%;
    background: #F8F2FE;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0;
}

/* Login - Header Bölümü */
body.technician-auth-body .header-section {
    width: 100%;
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.technician-auth-body .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

body.technician-auth-body .logo-image {
    width: 180px;
    object-fit: contain;
}

body.technician-auth-body .app-subtitle {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
}

/* Login - İllüstrasyon Bölümü */
body.technician-auth-body .illustration-container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 300px;
}

body.technician-auth-body .login-illustration {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Login - Form Bölümü */
body.technician-auth-body .form-container {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

body.technician-auth-body .input-wrapper {
    position: relative;
    width: 100%;
}

body.technician-auth-body .input-icon-wrapper {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.technician-auth-body .input-icon {
    width: 20px;
    height: 20px;
}

body.technician-auth-body .form-input {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 48px;
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    font-size: 16px;
    color: #333333;
    background: #FFFFFF;
    transition: all 0.2s ease;
    font-family: inherit;
}

body.technician-auth-body .form-input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.08);
}

body.technician-auth-body .form-input::placeholder {
    color: #999999;
}

body.technician-auth-body .password-wrapper {
    position: relative;
}

body.technician-auth-body .forgot-link {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A90E2;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    z-index: 2;
    background: #FFFFFF;
    padding-left: 8px;
}

body.technician-auth-body .forgot-link:hover {
    text-decoration: underline;
}

body.technician-auth-body .login-btn {
    width: 100%;
    height: 52px;
    background: #4A90E2;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
    font-family: inherit;
}

body.technician-auth-body .login-btn:hover {
    background: #357ABD;
}

body.technician-auth-body .login-btn:active {
    transform: scale(0.98);
}

body.technician-auth-body .signup-container {
    text-align: center;
    margin-top: 4px;
}

body.technician-auth-body .signup-text {
    color: #666666;
    font-size: 14px;
}

body.technician-auth-body .signup-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

body.technician-auth-body .signup-link:hover {
    text-decoration: underline;
}

/* Login - Özellikler Bölümü */
body.technician-auth-body .features-container {
    width: 100%;
    padding: 30px 20px 40px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

body.technician-auth-body .feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    max-width: 110px;
}

body.technician-auth-body .feature-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.technician-auth-body .feature-label {
    color: #4A90E2;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Login - Page Loader (auth layout için) */
body.technician-auth-body .page-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body.technician-auth-body .page-loader.active {
    display: flex !important;
}

/* Login Responsive */
@media (max-width: 480px) {
    body.technician-auth-body .login-container {
        max-width: 100%;
    }

    body.technician-auth-body .login-illustration {
        max-width: 100%;
    }

    body.technician-auth-body .feature-label {
        font-size: 10px;
    }
    .tab-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-height: 800px) {
    body.technician-auth-body .illustration-container {
        min-height: 250px;
    }
}

/* ------------------------------------------------
   Jobs Sayfası (technician/jobs.html)
--------------------------------------------------- */
.jobs-container {
    width: 100%;
    max-width: 100%;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.jobs-header-section {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.jobs-container .back-button,
.job-details-container .back-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.jobs-container .back-button:hover,
.job-details-container .back-button:hover {
    background: #F8F9FF;
    border-color: #4A90E2;
}

.jobs-container .page-title,
.job-details-container .page-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    flex: 1;
    text-align: center;
    margin: 0 16px;
}

.jobs-container .header-spacer,
.job-details-container .header-spacer {
    width: 40px;
}

.tabs-section {
    width: 100%;
    padding: 0 20px 20px 20px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-section::-webkit-scrollbar {
    display: none;
}

.tab-button {
    /*padding: 12px 20px;*/
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    background: #F5F5F5;
    color: #666666;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tab-button.active {
    background: #4A90E2;
    color: #FFFFFF;
}

.tab-button:hover {
    background: #E3F2FD;
    color: #4A90E2;
}

.tab-button.active:hover {
    background: #357ABD;
    color: #FFFFFF;
}

.tab-content {
    display: none;
    width: 100%;
    padding: 0 20px;
}

.tab-content.active {
    display: block;
}

.jobs-container .job-section {
    width: 100%;
    margin-bottom: 20px;
}

.jobs-container .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.jobs-container .job-card {
    width: 100%;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.jobs-container .job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: #F8F9FF;
}

.jobs-container .job-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jobs-container .job-service {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.jobs-container .job-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666666;
}

.jobs-container .job-info svg {
    flex-shrink: 0;
}

.jobs-container .job-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.jobs-container .job-status.completed {
    color: #4CAF50;
}

.jobs-container .job-action {
    display: flex;
    align-items: center;
}

.jobs-container .job-action svg {
    flex-shrink: 0;
}

.jobs-container .job-amount {
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
}

.jobs-container .no-data-placeholder {
    padding: 24px;
    text-align: center;
    color: #999;
    font-size: 15px;
}

/* ------------------------------------------------
   Job Details Sayfası (technician/job-details.html)
--------------------------------------------------- */
.job-details-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 80px;
}

.job-details-container .page-title {
    font-size: 20px;
}

.status-badge {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.status-badge.accepted {
    background: #E8F5E9;
    color: #4CAF50;
}

.status-badge.pending {
    background: #FFF3E0;
    color: #FF9800;
}

.status-badge.completed {
    background: #E3F2FD;
    color: #4A90E2;
}

.job-info-section {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #999999;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
}

.map-section {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.map-placeholder {
    text-align: center;
    color: #999999;
}

.map-placeholder svg {
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 14px;
    font-weight: 500;
}

.time-section {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
}

.time-box {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.time-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 12px;
}

.time-display {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.time-note {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.action-buttons {
    width: calc(100% - 40px);
    margin: 20px 20px;
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    height: 56px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
}

.action-btn.primary {
    background: #4CAF50;
    color: #FFFFFF;
}

.action-btn.primary:hover {
    background: #45a049;
}

.action-btn.secondary {
    background: #FFFFFF;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.action-btn.secondary:hover {
    background: #F8F9FF;
}

/* ------------------------------------------------
   Ortak Sayfa Bileşenleri (technician sayfaları)
--------------------------------------------------- */
.header-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.header-title {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
}

.progress-section {
    width: 100%;
    padding: 0 20px 20px 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #E0E0E0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.step {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 500;
}

.step.active {
    color: var(--color-primary);
    font-weight: 600;
}

.step.completed {
    color: var(--color-success);
}

.step-indicator {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.content-section {
    width: 100%;
    padding: 0 20px;
}

.main-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.main-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-section {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.form-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group.half {
    flex: 1;
}

.go-online-button {
    width: 100%;
    height: 56px;
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    margin-bottom: 12px;
}

.go-online-button:hover {
    background: var(--color-primary-dark);
}

.instruction-text {
    font-size: 14px;
    color: var(--color-muted);
}

.continue-button,
.next-button {
    width: 100%;
    height: 56px;
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.continue-button:hover,
.next-button:hover {
    background: var(--color-primary-dark);
}

/* ------------------------------------------------
   Wallet
--------------------------------------------------- */
.wallet-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.stat-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.balance-card {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #fff;
}

.earnings-stat-card {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    color: #fff;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.balance-icon,
.earnings-stat-card .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
}

.wallet-card {
    background: linear-gradient(135deg, #F8F2FE 0%, #E8E0F5 100%);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 0 20px 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.wallet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bank-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
}

.bank-card .card-label,
.bank-card .card-status span,
.bank-card .card-account {
    color: #fff;
}

.bank-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 8px;
}

.card-left {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    flex: 1;
}

.card-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.card-status svg {
    flex-shrink: 0;
}

.card-account {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.card-right {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bu hafta kazanç kartı - turuncu gradient (technician/wallet.html) */
.wallet-card.earnings-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, #FFE5B4 0%, #FFCC80 100%);
    border: 2px solid #FFB74D;
}

.wallet-container .earnings-amount {
    font-size: 42px;
    font-weight: 700;
    color: #E65100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wallet-card .earnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.earnings-badge {
    background: var(--color-success);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-md);
}

.earnings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.breakdown-item {
    font-size: 14px;
    color: #5D4037;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakdown-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6F00;
    flex-shrink: 0;
}

.breakdown-item strong {
    color: #E65100;
    font-weight: 700;
}

.send-bank-button {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, var(--color-success) 0%, #45A049 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.send-bank-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.transfer-note {
    font-size: 12px;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 30px;
}

.transfer-history {
    margin-top: 20px;
    padding: 0 20px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.history-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.view-all-link {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

.history-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.history-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.history-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.transfer-history .history-item:nth-child(2) {
    border-left-color: var(--color-warning);
}

.transfer-history .history-item:nth-child(2)::before {
    background: linear-gradient(180deg, var(--color-warning) 0%, #F57C00 100%);
}

.transfer-history .history-item:nth-child(3) {
    border-left-color: var(--color-success);
}

.transfer-history .history-item:nth-child(3)::before {
    background: linear-gradient(180deg, var(--color-success) 0%, #388E3C 100%);
}

.history-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.history-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: var(--radius-sm);
}

.history-info {
    flex: 1;
}

.history-description {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.history-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.history-status.pending {
    color: var(--color-warning);
}

.history-status.completed {
    color: var(--color-success);
}

.history-amount {
    font-size: 18px;
    font-weight: 700;
}

.history-amount.positive {
    color: var(--color-success);
    font-size: 20px;
}

/* ------------------------------------------------
   Profile / My Profile
--------------------------------------------------- */
.profile-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.profile-info-card {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 20px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.profile-email {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.account-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #F5F5F5;
    border-radius: var(--radius-xs);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.account-status:hover {
    background: #E8E8E8;
}

.status-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.menu-section {
    width: calc(100% - 40px);
    margin: 0 20px 12px;
}

.menu-item {
    width: 100%;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.menu-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.menu-arrow {
    flex-shrink: 0;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: #F5F5F5;
    color: var(--color-muted);
}

.job-tag.active-tag {
    background: #E3F2FD;
    color: var(--color-primary);
}

.badge-count {
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: #E3F2FD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-label {
    font-size: 14px;
    color: var(--color-muted);
}

.payment-value {
    font-size: 14px;
    color: var(--color-success);
    font-weight: 600;
}

.logout-item {
    margin-top: 8px;
}

.logout-item .menu-title {
    color: var(--color-text-secondary);
}

/* ------------------------------------------------
   Settings
--------------------------------------------------- */
.settings-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 80px;
}

.settings-section {
    width: calc(100% - 40px);
    margin: 0 20px 24px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item:hover {
    background: #F8F9FF;
    margin: 0 -12px;
    padding: 16px 12px;
    border-radius: var(--radius-xs);
}

.setting-info {
    flex: 1;
}

.setting-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.setting-description {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.setting-item svg {
    flex-shrink: 0;
    margin-left: 12px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #F5F5F5;
}

.language-option {
    padding: 12px;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 8px;
}

.language-option:hover {
    background: #F8F9FF;
}

.language-option.selected {
    background: #E8F4FF;
    color: var(--color-primary);
    font-weight: 600;
}

.range-slider-container {
    padding: 20px 0;
}

.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #E0E0E0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
}

.range-value {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 12px;
}

/* ------------------------------------------------
   Schedule
--------------------------------------------------- */
.schedule-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 80px;
}

.calendar-header {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border: 1px solid #E0E0E0;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-arrow:hover {
    background: #F8F9FF;
    border-color: var(--color-primary);
}

.month-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.calendar-section {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-muted);
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: var(--transition);
}

.day:hover {
    background: #F8F9FF;
}

.day.active {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
}

/* İş olan gün: arka plan renkli (Schedule sayfası) */
.day.has-jobs {
    position: relative;
    background: #EFF6FF;
}

.day.active.has-jobs {
    background: var(--color-primary);
    color: #fff;
}

.day.has-jobs::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

.day.active.has-jobs::after {
    background: #fff;
}

/* Schedule calendar day colors:
   - pending/active jobs => yellow
   - completed jobs => green
   Keep "active" state readable while preserving the day status color. */
.day.has-jobs.has-jobs-pending { background: #FEF3C7; }
.day.has-jobs.has-jobs-pending::after { background: #F59E0B; }
.day.active.has-jobs.has-jobs-pending { background: #FDE68A; color: #78350F; }
.day.active.has-jobs.has-jobs-pending::after { background: #78350F; }

.day.has-jobs.has-jobs-completed { background: #DCFCE7; }
.day.has-jobs.has-jobs-completed::after { background: #10B981; }
.day.active.has-jobs.has-jobs-completed { background: #86EFAC; color: #064E3B; }
.day.active.has-jobs.has-jobs-completed::after { background: #064E3B; }

.day.other-month {
    color: #CCCCCC;
    opacity: 0.5;
}

.scheduled-jobs {
    width: calc(100% - 40px);
    margin: 0 20px;
}

.job-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.job-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 70px;
}

.job-content {
    flex: 1;
}

.job-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.job-location {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.job-client {
    font-size: 12px;
    color: var(--color-muted);
}

.job-status-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.job-status-badge.accepted {
    background: #E8F5E9;
    color: var(--color-success);
}

.job-status-badge.pending {
    background: #FFF3E0;
    color: var(--color-warning);
}

.job-status-badge.completed {
    background: #E3F2FD;
    color: var(--color-primary);
}

.no-jobs {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-muted);
    font-size: 14px;
}

.json-output {
    margin-top: 20px;
    padding: 16px;
    background: #F5F5F5;
    border-radius: var(--radius-md);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--color-text);
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.json-output.show {
    display: block;
}

/* ------------------------------------------------
   Contact
--------------------------------------------------- */
.contact-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 80px;
}

.contact-container .save-button {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 0;
}

.info-card {
    width: calc(100% - 40px);
    margin: 0 20px 16px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #F8F9FF;
    border-radius: var(--radius-sm);
}

.flag {
    font-size: 20px;
}

.country-code {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.phone-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--color-text);
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-text-secondary);
}

.arrow-icon {
    margin-left: auto;
}

.info-note {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.5;
}

.action-section {
    width: calc(100% - 40px);
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delete-button {
    width: 100%;
    height: 52px;
    background: var(--color-surface);
    border: 2px solid var(--color-danger);
    border-radius: var(--radius-md);
    color: var(--color-danger);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.delete-button:hover {
    background: #FFF5F5;
}

.save-changes-button {
    width: 100%;
    height: 52px;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.save-changes-button:hover {
    background: var(--color-primary-dark);
}

/* ------------------------------------------------
   Transactions
--------------------------------------------------- */
.transactions-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 80px;
}

.transactions-list {
    width: 100%;
    padding: 0 20px;
}

.transaction-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.transaction-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.transaction-date {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.transaction-customer {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.transaction-address {
    font-size: 12px;
    color: var(--color-muted);
}

.transaction-amount {
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.transaction-amount.positive {
    color: var(--color-success);
}

/* ------------------------------------------------
   Documents
--------------------------------------------------- */
.documents-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 100px;
}

.documents-container .info-section {
    width: calc(100% - 40px);
    margin: 0 20px 24px;
}

.documents-container .info-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.documents-list {
    width: calc(100% - 40px);
    margin: 0 20px;
}

.document-item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.document-icon {
    width: 48px;
    height: 48px;
    background: #F0F7FF;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-content {
    flex: 1;
    min-width: 0;
}

.document-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.document-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.document-status.verified {
    color: var(--color-success);
}

.document-status.pending {
    color: var(--color-warning);
}

.document-status.rejected {
    color: #F44336;
}

.document-action {
    padding: 8px 16px;
    background: #F0F7FF;
    color: var(--color-primary);
    border: none;
    border-radius: var(--radius-xs);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.document-action:hover {
    background: #E0EFFF;
}

.add-section {
    width: calc(100% - 40px);
    margin: 32px 20px 0;
}

.add-document-button {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-document-button:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* ------------------------------------------------
   Job Types
--------------------------------------------------- */
.job-types-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 100px;
}

.job-types-list {
    width: calc(100% - 40px);
    margin: 0 20px;
}

.job-type-item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.job-type-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex: 1;
}

.job-type-icon {
    width: 48px;
    height: 48px;
    background: #F0F7FF;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-type-content {
    flex: 1;
}

.job-type-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.job-type-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.save-section {
    width: calc(100% - 40px);
    margin: 32px 20px 0;
}

.save-section .save-button {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.save-section .save-button:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* ------------------------------------------------
   Pre-Application / Application
--------------------------------------------------- */
.application-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 40px;
}

.ssn-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lock-icon {
    position: absolute;
    left: 16px;
    z-index: 1;
}

.ssn-input {
    padding-left: 48px;
    padding-right: 40px;
}

.ssn-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.upload-button {
    width: 100%;
    height: 60px;
    border: 2px dashed var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    cursor: pointer;
    transition: var(--transition);
    background: #F8F9FF;
}

.upload-button:hover {
    background: #E3F2FD;
    border-color: var(--color-primary-dark);
}

.upload-icon {
    flex-shrink: 0;
}

.upload-button span:first-of-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.upload-subtitle {
    font-size: 12px;
    color: var(--color-muted);
    margin-left: 4px;
}

.upload-note {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 8px;
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--color-muted);
    margin-top: 12px;
}

/* ------------------------------------------------
   Background Check
--------------------------------------------------- */
.check-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 40px;
}

.status-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.shield-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.clock-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
}

.status-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.status-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.validation-section {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.validation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.validation-item:last-child {
    border-bottom: none;
}

.validation-item.processing {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.validation-item.processing > div {
    margin-left: 32px;
}

.processing-text {
    font-size: 12px;
    color: var(--color-muted);
    font-style: italic;
}

.tip-section {
    background: #FFF9E6;
    border-left: 4px solid #FFC107;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: left;
}

.progress-section-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 80px;
}

.progress-item.pending svg {
    opacity: 0.5;
}

.progress-item span {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.progress-item.completed span {
    color: var(--color-primary);
}

.progress-line {
    width: 40px;
    height: 2px;
    margin-top: -20px;
}

.progress-line.completed {
    background: var(--color-primary);
}

.progress-line.pending {
    background: #E0E0E0;
    border: 1px dashed var(--color-muted);
}

.reminder-section {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.reminder-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.reminder-section div {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ------------------------------------------------
   Certification
--------------------------------------------------- */
.cert-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 40px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.radio-option:hover {
    border-color: var(--color-primary);
    background: #F8F9FF;
}

.radio-option.selected {
    border-color: var(--color-primary);
    background: #E3F2FD;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.radio-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}

.experience-card {
    background: var(--color-surface);
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.experience-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.card-button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.card-button.primary,
.card-button.secondary {
    background: var(--color-primary);
    color: #fff;
}

.card-button.primary:hover,
.card-button.secondary:hover {
    background: var(--color-primary-dark);
}

.card-button.success {
    background: var(--color-success);
    color: #fff;
}

.card-button.success:hover {
    background: #45a049;
}

.card-note {
    font-size: 12px;
    color: var(--color-muted);
    margin-top: 8px;
    text-align: center;
}

.cert-container .info-note {
    background: #E3F2FD;
    border-left: 4px solid var(--color-primary);
    padding: 16px;
    border-radius: var(--radius-xs);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.cert-container .info-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ------------------------------------------------
   Approved / Scheduled (certification, training)
--------------------------------------------------- */
.approved-container,
.scheduled-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 40px;
}

.illustration {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.technician-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.checkmark-large {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
}

.approval-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.approval-message {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.scheduled-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.scheduled-message {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.benefits-list {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--color-text);
}

.benefit-item svg {
    flex-shrink: 0;
}

.info-list {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.info-list .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    border-bottom: none;
}

.info-list .info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.envelope-icon {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------
   Availability Settings
--------------------------------------------------- */
.availability-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-bottom: 40px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.days-selection {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.day-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1.5px solid #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.day-setting-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.day-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.day-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

.day-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.time-range {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.time-range.disabled {
    opacity: 0.5;
}

.time-range input[type="time"] {
    padding: 10px 14px;
    border: 1.5px solid #E0E0E0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    background: var(--color-surface);
    cursor: pointer;
    transition: border-color 0.2s ease;
    min-width: 100px;
}

.time-range input[type="time"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.time-range input[type="time"]:disabled {
    background: #F5F5F5;
    cursor: not-allowed;
}

.time-separator {
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.availability-container .action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    width: auto;
    margin: 8px 0 0;
}

.btn-cancel,
.btn-save {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel {
    background: var(--color-surface);
    color: var(--color-text-secondary);
    border: 2px solid #E0E0E0;
}

.btn-cancel:hover {
    background: #F5F5F5;
    border-color: #CCCCCC;
}

.btn-save {
    background: var(--color-primary);
    color: #fff;
}

.btn-save:hover {
    background: var(--color-primary-dark);
}

/* ------------------------------------------------
   Job Checkbox (dashboard job list)
--------------------------------------------------- */
.job-checkbox {
    margin-top: 4px;
}

.job-checkbox input[type="checkbox"] {
    display: none;
}

.job-checkbox label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    display: block;
    cursor: pointer;
    position: relative;
}

.job-checkbox input[type="checkbox"]:checked + label {
    background: var(--color-primary);
}

.job-checkbox input[type="checkbox"]:checked + label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.view-details {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.view-details:hover {
    text-decoration: underline;
}

/* ------------------------------------------------
   Page Transition (fadeIn)
--------------------------------------------------- */
.tech-fade-in {
    animation: techFadeIn 0.3s ease-in;
}

@keyframes techFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ------------------------------------------------
   Responsive - Ortak
--------------------------------------------------- */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-value {
        font-size: 18px;
    }

    .profile-name {
        font-size: 18px;
    }

    .menu-title {
        font-size: 15px;
    }

    .main-heading {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
    }

    .day-setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .day-checkbox {
        width: 100%;
    }

    .time-range {
        width: 100%;
        justify-content: space-between;
    }

    .time-range input[type="time"] {
        flex: 1;
    }

    .transaction-title {
        font-size: 14px;
    }

    .transaction-amount {
        font-size: 16px;
    }

    .approval-title,
    .scheduled-title {
        font-size: 28px;
    }

    .technician-image {
        width: 160px;
        height: 160px;
    }

    .experience-card {
        flex-direction: column;
    }

    .progress-section-detail {
        gap: 4px;
    }

    .progress-item {
        min-width: 60px;
    }

    .progress-line {
        width: 20px;
    }

    .status-title {
        font-size: 20px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

a {
    outline: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #F8F2FE 0%, #FFFFFF 100%);
    min-height: 100vh;
    padding: 0;
    width: 100%;
}

.wallet-container {
    width: 100%;
    max-width: 100%;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.header-section {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.back-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.back-button:hover {
    background: #F8F9FF;
    border-color: #4A90E2;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    flex: 1;
    text-align: center;
    margin: 0 16px;
}

.header-spacer {
    width: 40px;
}

.content-section {
    width: 100%;
    padding: 0 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.balance-card {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

.earnings-stat-card {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    color: white;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balance-icon {
    background: rgba(255, 255, 255, 0.2);
}

.earnings-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
}

.wallet-card {
    background: linear-gradient(135deg, #F8F2FE 0%, #E8E0F5 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wallet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bank-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.bank-card .card-label,
.bank-card .card-status span,
.bank-card .card-account {
    color: white;
}

.bank-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
}

.card-left {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    flex: 1;
}

.card-label {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666666;
    margin-bottom: 4px;
}

.card-status svg {
    flex-shrink: 0;
}

.card-account {
    font-size: 14px;
    color: #666666;
}

.card-right {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, #FFE5B4 0%, #FFCC80 100%);
    border: 2px solid #FFB74D;
}

.earnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.earnings-badge {
    background: #4CAF50;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.earnings-amount {
    font-size: 42px;
    font-weight: 700;
    color: #E65100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.earnings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.breakdown-item {
    font-size: 14px;
    color: #5D4037;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakdown-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6F00;
    flex-shrink: 0;
}

.breakdown-item strong {
    color: #E65100;
    font-weight: 700;
}

.send-bank-button {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.send-bank-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45A049 0%, #388E3C 100%);
}

.send-bank-button:active {
    transform: translateY(-1px);
}

.transfer-note {
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin-bottom: 30px;
}

.transfer-history {
    margin-top: 20px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.history-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

.view-all-link {
    font-size: 14px;
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

.history-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4A90E2;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.history-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4A90E2 0%, #357ABD 100%);
}

.history-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.transfer-history .history-item:nth-child(2) {
    border-left-color: #FF9800;
}

.transfer-history .history-item:nth-child(2)::before {
    background: linear-gradient(180deg, #FF9800 0%, #F57C00 100%);
}

.transfer-history .history-item:nth-child(3) {
    border-left-color: #4CAF50;
}

.transfer-history .history-item:nth-child(3)::before {
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 100%);
}

.history-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 12px;
}

.history-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 10px;
}

.history-info {
    flex: 1;
}

.history-description {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.history-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.history-status.pending {
    color: #FF9800;
}

.history-status.completed {
    color: #4CAF50;
}

.history-amount {
    font-size: 18px;
    font-weight: 700;
}

.history-amount.positive {
    color: #4CAF50;
    font-size: 20px;
}


.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #999999;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-item.active {
    color: #4A90E2;
}

.nav-item.active svg path {
    stroke: #4A90E2;
    fill: #4A90E2;
}

.add-button {
    width: 56px;
    height: 56px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.add-button svg {
    width: 32px;
    height: 32px;
}

.add-button span {
    display: none;
}

@media (max-width: 480px) {
    .earnings-amount {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

