body {
    background-color: #f0f0f0;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    padding: 0;
    max-width: 100%;
}

.home-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #F3F3F3;
    min-height: 100vh;
}

/* Desktop styles - full width */
@media (min-width: 768px) {
    .home-container {
        max-width: 100%;
        padding: 40px;
    }

    /* Limit content width on desktop for better readability */
    .header-section,
    .vehicle-intro,
    .vehicle-info-card,
    .info-item,
    .checkbox-container,
    .button-container,
    .powered-by,
    form > .alert {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Header section */
.header-section {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.company-logo {
    height: 40px;
    margin-bottom: 20px;
}

.welcome-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.client-name {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0 0;
}

.vehicle-intro {
    font-size: 14px;
    color: #666;
    margin: 20px 0 15px 0;
}

/* Vehicle info card */
.vehicle-info-card {
    background-color: #2e2c5a;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    color: white;
}

.vehicle-info-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-icon-box {
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vehicle-icon-img {
    width: 30px;
    height: 30px;
    filter: invert(0);
}

.vehicle-details {
    flex: 1;
}

.vehicle-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: white;
}

.vehicle-tags {
    display: flex;
    gap: 10px;
}

.vehicle-tag {
    background-color: white;
    color: #2B3E50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Info items */
.info-item {
    background-color: #707070;
    color: white;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 24px;
    color: #fff;
}

.info-text {
    font-size: 14px;
    color: white;
    flex: 1;
    line-height: 1.5;
}

/* Checkbox */
.checkbox-container {
    margin: 20px 0;
    display: flex;
    align-items: start;
    gap: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.form-check-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    line-height: 1.5;
}

/* Continue button */
.button-container {
    margin-top: 30px;
}

.btn-continue {
    width: 100%;
    background-color: #1a237e;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background-color: #0d47a1;
}

.btn-continue:active {
    transform: scale(0.98);
}

.btn-continue:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* Powered by */
.powered-by {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
    font-size: 12px;
    color: #999;
}

.powered-logo {
    height: 40px;
    margin-top: 5px;
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-danger {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

/* Page content for non-inspection view */
.page-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.timesystem {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.timesystem img {
    height: 20px;
    margin-left: 5px;
}