﻿.vehicle-option {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    padding: 10px;
    text-align: center;
}

    .vehicle-option img {
        width: 100px;
        height: auto;
    }

    .vehicle-option.active {
        border-color: #0f6cbd;
        background-color: #EFF6FF;
    }

.vehicle-label {
    margin-top: 8px;
    font-weight: 500;
    color: #111827;
}

.search-btn {
    width: 200px;
    background-color: #0f6cbd;
    border-color: #0f6cbd;
    color: #fff;
    padding: 10px 0;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .search-btn:hover {
        background-color: #115ea3;
        border-color: #115ea3;
    }
    .search-btn:active {
        background-color: #0f6cbd;
        border-color: #0f6cbd;
    }

@@media (max-width: 1200px) {
    .vehicle-option img {
        width: 70px;
    }
}

@@media (max-width: 992px) {
    .vehicle-option img {
        width: 60px;
    }
}

 @media (max-width: 768px) {
    .vehicle-option img {
        width: 50px;
    }
}

/*@media (max-width: 480px) {
    .vehicle-option img {
        width: 40px;
    }
}*/

.plate-btn {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 0.5rem;
    font-weight: bold;
    padding: 2px 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

    /* Hover: viền đậm hơn, nền xanh nhẹ, chữ trắng */
    .plate-btn:hover {
        background-color: #feda15;
        transform: scale(1.05);
    }

#search-result span.badge.text-danger {
    font-weight: bold;
    border: 1px solid rgba(var(--bs-danger-rgb));
}

#search-result span.badge.text-success {
    font-weight: bold;
    border: 1px solid rgba(var(--bs-success-rgb));
}

#summary-box {
    background-color: #f8f9fa; /* nền xám nhạt */
    border: 1px solid #dee2e6; /* viền nhẹ */
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    #summary-box p:first-child {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #343a40;
    }

    #summary-box p:last-child {
        color: #495057;
        margin-bottom: 0.5rem;
    }

    #summary-box span {
        font-weight: bold;
    }

    #summary-box .processed {
        color: #198754; /* xanh lá */
    }

    #summary-box .unprocessed {
        color: #dc3545; /* đỏ */
    }