.repair-selector-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.repair-selector-inner {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.repair-back-btn {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #0073aa;
}
.repair-back-btn:hover {
    text-decoration: underline;
}

.repair-breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.repair-type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.repair-category-btn {
    padding: 14px 10px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s ease-in-out;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-width: 150px;
    max-width: 220px;
}

.repair-category-btn:hover {
    border-color: #0073aa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    background: #f8fbff;
}

.repair-cat-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.repair-cat-img-wrapper img {
    max-width: 75px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.repair-cat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-top: 2px;
}

.repair-results {
    margin-top: 20px;
}

.no-results {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.repair-loader {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.spinner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #ddd;
    border-top-color: #0073aa;
    animation: repair-spin 0.7s linear infinite;
    margin: 0 auto;
}

@keyframes repair-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .repair-type-buttons {
        justify-content: center;
    }
    .repair-selector-inner {
        padding: 0 10px;
    }
}