.warranty-claims-section {
    margin: 0 auto;
    padding: 20px;
    padding-top: 0;
}

form#warranty-claim-form .form-group {
    margin-bottom: 20px;
}

#warranty-claim-form .form-control {
    border: solid 1px #000;
    border-radius: 0;
    min-height: 44px;
}

#warranty-claim-form .form-control[type="file"] {
    min-height: 0;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.image-preview {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warranty-claims-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.warranty-claims-table th,
.warranty-claims-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}
select[name="product_id"] {
    min-height: 38px; /* Prevents jumping during loading */
}

select[name="product_id"]:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
.warranty-claims-table th {
    background: #f5f5f5;
}

.warranty-claims-table tr:nth-child(even) {
    background: #fafafa;
}
