/* Repair Plugin Styles */
#repair-plugin {
    font-family: 'Roboto', sans-serif;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.repair-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.progress-line-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 5px;
    background: #e04715;
    width: 0%;
    z-index: 2;
    transition: width 0.3s ease;
}

/* Grids */
.device-grid, .brand-grid, .model-grid, .repair-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.device-item, .brand-item, .model-item, .repair-item {
    width: 200px;
    padding: 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-item:hover, .brand-item:hover, .model-item:hover, .repair-item:hover {
    background: #e04715;
    color: #fff;
    border-color: #e04715;
}

/* Repair List */
#repair-summary {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#repair-list li {
    margin-bottom: 10px;
    list-style: none;
}

.remove-repair {
    cursor: pointer;
    color: red;
    margin-left: 10px;
    font-weight: bold;
}
