.artwork-images img{
    width: 300px !important;
}
.logoBox {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-container {
    display: inline-block;   /* IMPORTANT: shrink to image width */
    text-align: center;
}

.logoBox img {
    max-width: 200px !important;
    width: auto;
    height: auto;
    display: block;
    margin: 10px auto 0;
}

.arrow {
    position: relative;
    height: 4px;
    background-color: var(--arrow-color, #ff4747);
    margin-top: 10px;
    width: 100%;   /* now matches img-container width */
}

/* Add arrow heads */
.arrow::before,
.arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent; /* size of arrow */
    transform: translateY(-50%);
}

.arrow::before {
    left: -10px;
    border-right-color: var(--arrow-color, #ff4747);  /* left arrow */
}

.arrow::after {
    right: -10px;
    border-left-color: var(--arrow-color, #ff4747);   /* right arrow */
}
.arrow span{
    position: absolute;
    font-size: 20px;
    padding: 0px 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.arrow-vertical {
    position: absolute;
    width: 4px;
    background-color: var(--arrow-color, red);
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}

.arrow-vertical::before,
.arrow-vertical::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    transform: translateX(-50%);
}

.arrow-vertical::before {
    top: -10px;
    border-bottom-color: var(--arrow-color, red);
}

.arrow-vertical::after {
    bottom: -10px;
    border-top-color: var(--arrow-color, red);
}

.arrow-vertical span {
    position: absolute;
    padding: 0px 10px;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
}
.color-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}

.color-item {
    display: flex;
    align-items: center;  /* vertical align */
    gap: 10px;
}

.color-square {
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.color-name {
    font-size: 14px;
}
.main-content img{
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.work-order-header .text-write {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    min-width: 0;
}

.work-order-header .text-write .input-text {
    min-width: 0;
    flex: 1 1 auto;
    text-align: center !important;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .date-fields {
        flex-wrap: wrap;
        gap: 12px;
    }

    .date-fields .text-write {
        flex: 0 0 auto;
        flex-grow: 0 !important;
    }
}

@media (max-width: 768px) {
    .work-order-header .text-write {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-order-header .text-write .input-text {
        flex: 1 1 auto;
        text-align: center !important;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}