@import url("/css/fonts.css?v=20260510-local-fonts");

/* Client Portal Styles */
/* webstranica.hr */

:root {
    --bg-primary: #0f1419;
    --bg-secondary: #1a2028;
    --bg-tertiary: #242c38;
    --bg-card: #1e2530;
    --text-primary: #e8edf2;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #2dd4bf;
    --accent-hover: #14b8a6;
    --accent-glow: rgba(45, 212, 191, 0.15);
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border: #2d3748;
    --border-light: #374151;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Login Screen */
.login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}


.logo-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.logo-accent {
    color: var(--accent);
}

.login-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-error {
    color: var(--error);
    font-size: 0.875rem;
    display: none;
    padding: 10px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius);
}

.form-error.show {
    display: block;
}

.login-note {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.btn-icon:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Dashboard Layout */
.dashboard-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-badge {
    background: var(--bg-tertiary);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--accent);
}

/* Main Content */
.dashboard-main {
    flex: 1;
    padding: 24px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Order Summary Card */
.order-summary-card {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    color: var(--bg-primary);
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.order-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.order-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.status-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-badge.cancelled {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.order-amount {
    text-align: right;
}

.amount-label {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 4px;
}

.amount-value {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Progress Section */
.progress-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.progress-section h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.progress-step:last-child {
    padding-bottom: 0;
}

.step-connector {
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--border);
}

.progress-step.completed .step-connector {
    background: var(--accent);
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    flex-shrink: 0;
    z-index: 1;
}

.step-indicator svg {
    width: 20px;
    height: 20px;
}

.progress-step.completed .step-indicator {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.progress-step.current .step-indicator {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.step-duration {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Tabs */
.tabs-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-btn svg {
    width: 18px;
    height: 18px;
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
}

.tab-content {
    display: none;
    padding: 24px;
}

.tab-content.active {
    display: block;
}

/* Messages */
.messages-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
}

.message.customer {
    background: var(--accent);
    color: var(--bg-primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message.admin {
    background: var(--bg-tertiary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.system {
    background: linear-gradient(135deg, rgba(23, 107, 93, 0.15), rgba(217, 119, 47, 0.15));
    border: 1px solid rgba(45, 212, 191, 0.3);
    align-self: center;
    text-align: center;
    max-width: 90%;
    border-radius: var(--radius);
}

.message.system .message-sender {
    color: var(--accent);
}

.message.system .message-body {
    color: var(--text-primary);
}

.message.system .message-body strong {
    color: var(--accent);
}

.message-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 0.75rem;
}

.message-sender {
    font-weight: 600;
}

.message.customer .message-time {
    opacity: 0.8;
}

.message.admin .message-time {
    color: var(--text-muted);
}

.message-body {
    font-size: 0.875rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.message-attachment {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.message-attachment a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: inherit;
    opacity: 0.9;
}

.message-attachment svg {
    width: 16px;
    height: 16px;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-input-box {
    display: flex;
    align-items: flex-end;
    gap: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 6px 6px 6px 18px;
    transition: border-color 0.2s;
}

.message-input-box:focus-within {
    border-color: var(--accent);
}

.message-input-box textarea {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-primary);
    resize: none;
    font-family: inherit;
    line-height: 1.5;
    min-height: 24px;
    max-height: 120px;
}

.message-input-box textarea:focus {
    outline: none;
}

.message-input-box textarea::placeholder {
    color: var(--text-muted);
}

.message-input-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

.attach-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.attach-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.attach-btn svg {
    width: 20px;
    height: 20px;
}

.send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: var(--bg-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.send-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.send-btn svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.attachment-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    color: var(--accent);
}

.attachment-preview svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.attachment-preview .attachment-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attachment-preview .attachment-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.attachment-preview .attachment-remove:hover {
    color: var(--error);
}

/* Documents */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.document-card:hover {
    background: var(--bg-secondary);
    transform: translateX(4px);
}

.document-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.document-icon svg {
    width: 24px;
    height: 24px;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.document-info p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.document-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.document-download {
    color: var(--accent);
}

.document-download svg {
    width: 20px;
    height: 20px;
}

/* Details */
.details-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    padding: 20px;
}

.detail-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: right;
}

/* Timeline */
.timeline-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.timeline-section h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    width: 2px;
    height: calc(100% - 8px);
    background: var(--border);
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.timeline-content {
    flex: 1;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.timeline-header h4 {
    font-size: 0.875rem;
    font-weight: 600;
}

.timeline-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.timeline-note {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 0.9375rem;
}

.empty-hint {
    font-size: 0.8125rem;
    margin-top: 8px;
    opacity: 0.7;
}

/* Footer */
.dashboard-footer {
    padding: 24px;
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.dashboard-footer p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.dashboard-footer a {
    color: var(--accent);
    text-decoration: none;
}

.dashboard-footer a:hover {
    text-decoration: underline;
}

.footer-links-mini {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links-mini a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-mini a:hover {
    color: var(--accent);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 12px 16px;
    }

    .header-logo {
        font-size: 1rem;
    }

    .order-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .dashboard-main {
        padding: 16px;
    }

    .order-summary-card {
        padding: 20px;
    }

    .order-info h1 {
        font-size: 1.25rem;
    }

    .amount-value {
        font-size: 1.5rem;
    }

    .progress-section,
    .tabs-container,
    .timeline-section {
        border-radius: var(--radius);
    }

    .progress-section h2,
    .timeline-section h2 {
        font-size: 1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    /* Login */
    .login-card {
        padding: 24px 20px;
    }

    .login-header h1 {
        font-size: 1.25rem;
    }

    /* Header */
    .dashboard-header {
        padding: 12px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-logo {
        font-size: 0.9rem;
    }

    .header-logo .logo-icon {
        font-size: 1.25rem;
    }

    .header-actions {
        gap: 10px;
    }

    .order-badge {
        font-size: 0.7rem;
        padding: 4px 6px;
    }

    .btn-icon {
        padding: 6px;
    }

    .btn-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Main content */
    .dashboard-main {
        padding: 12px;
    }

    /* Order Summary */
    .order-summary-card {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: var(--radius);
    }

    .order-summary-header {
        flex-direction: column;
        gap: 16px;
    }

    .order-info h1 {
        font-size: 1.125rem;
    }

    .order-meta {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.8125rem;
    }

    .order-amount {
        text-align: left;
    }

    .amount-value {
        font-size: 1.375rem;
    }

    /* Progress Section */
    .progress-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .progress-section h2 {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .progress-step {
        gap: 12px;
        padding-bottom: 20px;
    }

    .step-indicator {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }

    .step-indicator svg {
        width: 18px;
        height: 18px;
    }

    .step-connector {
        left: 17px;
        top: 36px;
        height: calc(100% - 36px);
    }

    .step-content {
        padding-top: 6px;
    }

    .step-content h4 {
        font-size: 0.875rem;
    }

    .step-content p {
        font-size: 0.75rem;
    }

    .step-duration {
        font-size: 0.6875rem;
    }

    /* Tabs */
    .tabs-container {
        margin-bottom: 16px;
        border-radius: var(--radius);
    }

    .tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 12px 14px;
        font-size: 0.8125rem;
        gap: 6px;
    }

    .tab-btn svg {
        width: 16px;
        height: 16px;
    }

    .tab-badge {
        min-width: 18px;
        height: 18px;
        font-size: 0.6875rem;
    }

    .tab-content {
        padding: 14px;
    }

    /* Messages */
    .messages-container {
        max-height: 350px;
        gap: 12px;
    }

    .message {
        max-width: 92%;
        padding: 10px 14px;
    }

    .message-header {
        font-size: 0.6875rem;
        gap: 8px;
    }

    .message-body {
        font-size: 0.8125rem;
    }

    .message-input-box {
        padding: 4px 4px 4px 14px;
    }

    .message-input-box textarea {
        font-size: 0.875rem;
        padding: 8px 0;
    }

    .attach-btn {
        width: 34px;
        height: 34px;
    }

    .send-btn {
        width: 34px;
        height: 34px;
    }

    /* Documents */
    .document-card {
        padding: 12px;
        gap: 12px;
    }

    .document-icon {
        width: 40px;
        height: 40px;
    }

    .document-icon svg {
        width: 20px;
        height: 20px;
    }

    .document-info h4 {
        font-size: 0.875rem;
    }

    .document-info p {
        font-size: 0.75rem;
    }

    /* Details */
    .detail-card {
        padding: 16px;
    }

    .detail-card h4 {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }

    .detail-row {
        padding: 6px 0;
        flex-direction: column;
        gap: 4px;
    }

    .detail-value {
        text-align: left;
    }

    /* Timeline */
    .timeline-section {
        padding: 16px;
    }

    .timeline-section h2 {
        margin-bottom: 16px;
    }

    .timeline-item {
        gap: 12px;
        padding-bottom: 20px;
    }

    .timeline-marker {
        width: 12px;
        height: 12px;
        margin-top: 5px;
    }

    .timeline-item:not(:last-child)::before {
        left: 5px;
        top: 18px;
    }

    .timeline-header h4 {
        font-size: 0.8125rem;
    }

    .timeline-date {
        font-size: 0.6875rem;
    }

    .timeline-note {
        font-size: 0.75rem;
    }

    /* Footer */
    .dashboard-footer {
        padding: 16px;
    }

    .dashboard-footer p {
        font-size: 0.75rem;
    }

    .dashboard-footer a {
        word-break: break-all;
    }

    /* Empty state */
    .empty-state {
        padding: 30px 16px;
    }

    .empty-state svg {
        width: 40px;
        height: 40px;
    }

    .empty-state p {
        font-size: 0.875rem;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .login-card {
        padding: 20px 16px;
    }

    .header-logo span:not(.logo-icon) {
        font-size: 0.8rem;
    }

    .order-badge {
        display: none;
    }

    .order-info h1 {
        font-size: 1rem;
    }

    .tab-btn span:not(.tab-badge) {
        display: none;
    }

    .tab-btn {
        padding: 12px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-light);
}
