/* This CSS is being used*/

:root {
    --space-halfunit: 8px;
    --space-unit: 16px;
    --space-oneandhalfunits: 24px;
    --space-twounits: 32px;
    --space-fiveunits: 80px;
    --radius-radius4: 4px;
}

.hidden-link {
    text-decoration: none;
    color: inherit;
}

table {
    font-family: Arial, sans-serif;
    border-collapse: collapse;
    width: 100%; /* Changed to 100% for better responsiveness */
}

td, th {
    text-align: left;
    padding: var(--space-halfunit);
}

th {
    background-color: #0076bd;
    color: white;
    white-space: nowrap;
}

tr {
    background-color: lightgrey;
    border: 1px solid white;
}

.standard-container {
    padding: var(--space-unit);
    margin-top: var(--space-unit);
    background-color: #be1111;
    border-radius: 6px;
    box-shadow: inset;
}

.damages-container, .damages-container1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 5px 5px 10px 0px #bebdbd;
    border-radius: 10px;
    background-color: #f5fafd;
    padding: var(--space-oneandhalfunits) var(--space-twounits);
    margin-bottom: var(--space-twounits);
}

.thq-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-oneandhalfunits);
    padding: var(--space-twounits);
}

.damages-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.section-padding {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-fiveunits);
    width: 100%;
}

.damages-catalogue-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-unit) var(--space-oneandhalfunits);
}

.damages-catalogue-item {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-halfunit);
    box-shadow: 5px 3px 10px 0px #d4d4d4;
    background-color: #ffffff;
    border-radius: var(--radius-radius4);
    padding: var(--space-halfunit);
}

.damages-catalogue-text {
    margin-left: var(--space-halfunit);
    font-weight: normal;
}

.damages-catalogue-text-bold {
    font-weight: bold;
}

.damages-catalogue-root-class-name {
    fill: #191818;
    color: #191818;
    width: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    grid-gap: 5px;
    width: 100%;
}

.image-grid-item {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.image-grid-small {
    width: 20%;
}
