.wv-warranty-search {
    max-width: 800px;
    margin: 20px auto;
    font-family: inherit;
}

.wv-warranty-search-form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.wv-form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.wv-form-row input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.wv-search-submit {
    background: #F05D22;
    min-height: auto;
    padding: 8px 45px;
    border-radius: 30px;
    color: #fff;
    margin: 0;
    cursor: pointer;
}

.wv-search-submit:hover {
    background-color: #005177;
}

.wv-search-reset {
    background-color: #e0e0e0;
    color: #333;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
    line-height: normal;
    display: inline-flex;
    align-items: center;
}

.wv-search-reset:hover {
    background-color: #d0d0d0;
    color: #000;
}

.wv-warranty-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.wv-warranty-item h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.wv-warranty-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.wv-warranty-table th,
.wv-warranty-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.wv-warranty-table th {
    width: 35%;
    font-weight: 600;
    color: #666;
    background-color: #fafafa;
}

.wv-no-results {
    text-align: center;
    padding: 30px;
    background: #fff5f5;
    border: 1px solid #ffd1d1;
    border-radius: 8px;
    color: #c02b2b;
}

@media (max-width: 600px) {
    .wv-form-row {
        flex-direction: column;
    }

    .wv-form-row input[type="text"],
    .wv-search-submit {
        width: 100%;
    }

    .wv-warranty-table th {
        width: 45%;
    }
}