/*
 * stempl.io CSS
 * Version: 1.0.1
 * Performance-optimiert (GPU-Beschleunigung, Font-Smoothing)
 */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance: GPU-Beschleunigung für Animationen */
.modal, .loading-overlay, .toast {
    will-change: opacity;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #3AA9DC 0%, #2b8db8 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.user-name {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3AA9DC 0%, #2b8db8 100%);
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
}

.login-box {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2.5rem;
    color: #3AA9DC;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #6b7280;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.login-footer a {
    color: #3AA9DC;
    text-decoration: none;
    font-size: 0.875rem;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"],
select,
.select-large {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

input:focus,
select:focus,
.select-large:focus {
    outline: none;
    border-color: #3AA9DC;
    box-shadow: 0 0 0 3px rgba(58, 169, 220, 0.1);
}

.select-large {
    font-size: 1.125rem;
    padding: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:active:not(:disabled) {
    transform: scale(0.98);
}

.btn-primary {
    background: #3AA9DC;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #2b8db8;
}

.btn-secondary {
    background: #4b5563;
    color: white;
}

.btn-secondary:hover {
    background: #374151;
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Huge Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.btn-huge {
    padding: 3rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-huge:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-huge:active:not(:disabled) {
    transform: translateY(0);
}

.btn-icon {
    font-size: 3rem;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #059669;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #dc2626;
}

.btn-warning {
    background: #f59e0b;
    color: white;
}

.btn-warning:hover:not(:disabled) {
    background: #d97706;
}

/* Card */
.card {
    background: white;
    border-radius: 0.375rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.summary-item {
    text-align: center;
}

.summary-value {
    font-size: 2rem;
    font-weight: bold;
    color: #3AA9DC;
}

.summary-value.positive {
    color: #10b981;
}

.summary-value.negative {
    color: #ef4444;
}

.summary-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Entries List */
.entries-list {
    border-top: 1px solid #e5e7eb;
}

.entry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.entry-item:last-child {
    border-bottom: none;
}

.entry-dot {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid;
}

.entry-dot.check-in {
    background: #10b981;
    border-color: #10b981;
}

.entry-dot.check-out {
    background: #ef4444;
    border-color: #ef4444;
}

.project-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}

.soll-mode-toggle {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soll-mode-toggle:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.soll-mode-toggle:active {
    transform: scale(0.95);
}

.progress-container {
    width: 100%;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: #3AA9DC;
    border-radius: 12px;
    transition: width 0.3s ease, background-color 0.3s ease;
    min-width: 2%;
}

.entry-dot.break-start {
    background: #f59e0b;
    border-color: #f59e0b;
}

.entry-dot.break-end {
    background: #3AA9DC;
    border-color: #3AA9DC;
}

/* Messages */
.error-message {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 90%;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    background: #10b981;
    color: white;
}

.toast.error {
    background: #ef4444;
    color: white;
}

.toast.info {
    background: #3AA9DC;
    color: white;
}

/* Loading Spinner */
.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #3AA9DC;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: #6b7280;
    font-size: 0.875rem;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.toggle-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn:hover {
    border-color: #3AA9DC;
    color: #3AA9DC;
}

.toggle-btn.active {
    background: #3AA9DC;
    color: white;
    border-color: #3AA9DC;
}

/* Timeline View */
.timeline-container {
    padding: 1rem 0;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e5e7eb;
    z-index: 0;
}

.timeline-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.timeline-duration {
    color: #6b7280;
    font-size: 0.875rem;
}



.timeline-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px dashed #d1d5db;
    z-index: 0;
}

.timeline-divider span {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.875rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 0;
    margin-left: 1rem;
    position: relative;
    z-index: 1;
}

.timeline-item:first-child {
    margin-top: 0 !important;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6.5px;
    top: 3px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e5e7eb;
    z-index: 2;
}

.timeline-item.check-in::before {
    border-color: #10b981;
    background: #10b981;
}

.timeline-item.check-out::before {
    border-color: #ef4444;
    background: #ef4444;
}

.timeline-item.break-start::before {
    border-color: #f59e0b;
    background: #f59e0b;
}

.timeline-item.break-end::before {
    border-color: #3AA9DC;
    background: #3AA9DC;
}

.timeline-time {
    font-weight: 600;
    color: #1f2937;
    min-width: 60px;
    padding-left: 1.25rem;
    padding-top: 0;
    padding-bottom: 1.5rem;
}

.timeline-content {
    flex: 1;
    padding-bottom: 1.5rem;
    padding-left: 0.25rem;
}

.timeline-type {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-project {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Day Navigation */
.day-navigation {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nav-btn {
    padding: 0 1.25rem;
    border: 2px solid #d1d5db;
    background: white;
    border-radius: 0.375rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #374151;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    height: auto;
}

.nav-btn:hover:not(:disabled) {
    border-color: #3AA9DC;
    color: #3AA9DC;
    background: #e6f7fd;
    box-shadow: 0 2px 4px rgba(58, 169, 220, 0.1);
    transform: translateY(-1px);
}

.nav-btn:active:not(:disabled) {
    transform: translateY(0);
}

.nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: #f9fafb;
}

.day-selector {
    flex: 1;
    position: relative;
    display: flex;
}

.current-day-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #3AA9DC;
    background: linear-gradient(135deg, #e6f7fd 0%, #cceef8 100%);
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #1a6d8f;
    text-align: center;
    box-shadow: 0 2px 4px rgba(58, 169, 220, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.current-day-btn::after {
    content: '📅';
    font-size: 1rem;
}

.current-day-btn:hover {
    background: linear-gradient(135deg, #cceef8 0%, #b3e5f3 100%);
    box-shadow: 0 4px 8px rgba(58, 169, 220, 0.2);
    transform: translateY(-1px);
}

.current-day-btn:active {
    transform: translateY(0);
}

.date-picker {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: 2px solid white;
}

.status-badge.status-complete {
    background: #10b981;
    color: white;
}

.status-badge.status-incomplete {
    background: #f59e0b;
    color: white;
}

.status-hint {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.hint-badge {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.date-picker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.duration-item {
    padding: 0.5rem 0;
    padding-left: 2.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .day-navigation {
        flex-wrap: wrap;
    }
    
    .day-selector {
        order: -1;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-btn {
        flex: 1;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 0.375rem;
    max-width: 500px;
    margin: 10vh auto;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #f59e0b;
}

.modal-info {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.modal-info p {
    margin: 0.5rem 0;
}

.modal-duration {
    font-size: 1.25rem;
    font-weight: bold;
    color: #d97706;
    margin-top: 1rem;
}

.modal-options {
    margin-bottom: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: #3AA9DC;
    background: #e6f7fd;
}

.radio-option input[type="radio"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-option span {
    flex: 1;
}

#correction-fields {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: #3AA9DC;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Mode Toggle */
.mode-toggle-btn {
    padding: 0.875rem 1rem;
    border: 2px solid #3AA9DC;
    background: white;
    border-radius: 0.375rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(58, 169, 220, 0.15);
}

.mode-toggle-btn:hover {
    background: #e6f7fd;
    transform: translateY(-1px);
}

.mode-toggle-btn:active {
    transform: translateY(0);
}

/* Date Modes */
.date-mode {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

/* Range Mode */
.range-inputs {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
}

.range-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.range-input-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

.range-date-input {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.range-date-input:focus {
    outline: none;
    border-color: #3AA9DC;
}

.range-separator {
    color: #9ca3af;
    font-weight: bold;
}

.btn-compact {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Day Divider */
.day-divider {
    text-align: center;
    margin: 2rem 0 1rem 0;
    position: relative;
}

.day-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid #e5e7eb;
    z-index: 0;
}

.day-divider-content {
    background: #f3f4f6;
    padding: 0.5rem 1.5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-weight: 700;
    color: #374151;
    font-size: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.day-divider-summary {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Timeline Day Divider - Zentriert mit grauem Container */
.timeline-day-divider {
    text-align: center;
    margin: 2rem 0 1rem 0;
    position: relative;
}

.timeline-day-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid #e5e7eb;
    z-index: 0;
}

.timeline-day-divider-content {
    background: #f3f4f6;
    padding: 0.5rem 1.5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-weight: 700;
    color: #374151;
    font-size: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.timeline-day-divider-summary {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Pending Badge Animation */
.status-badge.status-pending {
    background: #f59e0b;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Global Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.loading-overlay .spinner {
    width: 60px;
    height: 60px;
    border-width: 5px;
}

/* Button Loading State */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Responsive Optimizations */
@media (max-width: 640px) {
    .container {
        padding: 0.75rem;
    }

    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .summary-value {
        font-size: 1.5rem;
    }

    .action-buttons {
        gap: 0.75rem;
    }

    .btn-huge {
        padding: 2rem 1rem;
        font-size: 1.25rem;
    }

    .btn-icon {
        font-size: 2rem;
    }

    .range-inputs {
        flex-direction: column;
        align-items: stretch;
    }

    .range-separator {
        display: none;
    }

    .mode-toggle-btn {
        min-width: 50px;
    }

    .modal-content {
        margin: 5vh 1rem;
        padding: 1.5rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .container {
        max-width: 700px;
    }
}

/* Manual Entry Panel */
#manual-entry-toggle {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #d1d5db;
    font-weight: 600;
    transition: all 0.2s;
}

#manual-entry-toggle:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

#toggle-icon {
    display: inline-block;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    transition: transform 0.2s;
}

#manual-entry-panel {
    padding-top: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive: Datum/Uhrzeit untereinander auf Mobile */
@media (max-width: 640px) {
    #manual-entry-panel > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Work Schedule Info Panel */
.btn-info-toggle {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.btn-info-toggle:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.info-value {
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 600;
}

@media (max-width: 640px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}