    body {
        font-family: Arial, Helvetica, sans-serif;
        background: #ffffff;
        margin: 0;
        padding: 40px;
        color: #000;
    }

    .vin-container {
        max-width: 900px;
    }

    .vin-container .title {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 5px;
    }

    .vin-container .sub-text {
        color: #000;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .vin-input {
        width: 547px;
        max-width: 100%;
        padding: 16px 18px;
        font-size: 14px;
        border: 1px solid #000;
        border-radius: 5px;
        box-sizing: border-box;
        opacity: 1;
        height:47px;
        color: #000;

    }

    .action-area {
        margin-top: 25px;
        min-height: 70px;
    }

    .check-btn {
        padding: 18px 40px;
        font-size: 16px;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        background: #000;
        color: #fff;
        animation: fadeIn 0.3s ease-in-out;
        height: 50px;
        text-decoration: none;
    }

    .status {
           display: inline-flex;
        align-items: center;
        padding: 10px 34px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 400;
        gap: 12px;
        color: #fff;
        animation: slideIn 0.4s ease;
    }

    .status span{
        margin-bottom: -3px;
    }

    .safe {
        background: #66b82f;
    }

    .unsafe {
        background: #c4002b;
    }

    .message {
        margin-top: 8px;
        font-size: 12px;
        line-height: 18px;
        color: #333;
        max-width: 900px;
        animation: fadeIn 0.4s ease;
        font-weight: 400;
    }

    .message a {
        color: #C3002F;
        text-decoration: underline;
    }

    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    body {
        padding: 20px;
    }

    .vin-container {
        max-width: 100%;
    }

    .vin-container .title {
        font-size: 15px;
    }

    .vin-container .sub-text {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .vin-input {
        width: 100%;
        height: 45px;
        font-size: 14px;
        padding: 12px 14px;
    }

    .action-area {
        margin-top: 20px;
        min-height: auto;
    }

    .check-btn {
        width: 100%;
        height: 48px;
        padding: 0;
        font-size: 15px;
        text-align: center;
    }

    .status {
        width: auto;
        padding: 7px 40px;
        font-size: 14px;
        gap: 8px;
    }


    .status svg {
        width: 22px !important;
        height: 22px !important;
    }

    .message {
        font-size: 12px;
        line-height: 17px;
        margin-top: 10px;
    }

    #vinError {
        font-size: 12px;
    }

    #appointmentBtn {
        width: 100%;
        height: 48px;
        font-size: 15px;
        margin-top: 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    .vin-container .title {
        font-size: 14px;
    }

    .vin-input {
        font-size: 13px;
    }

    .check-btn,
    #appointmentBtn {
        font-size: 14px;
    }

    .status {
        font-size: 13px;
    }
}
