.full-width-manager {
    background-color: #000 !important;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.logistic-header {
    color: #d7b13a;
    text-transform: uppercase;
    border-bottom: 2px solid #d7b13a;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.thickness-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 1024px) {
    .thickness-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .thickness-grid-container {
        grid-template-columns: 1fr;
    }
}

.thickness-card-wrap {
    background: #000;
    border: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
}

.thickness-card-header {
    padding: 20px;
}

.thk-controls-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.yellow-toggle-btn {
    background-color: #d7b13a !important;
    color: #ffffff !important;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

.custom-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
}

.label-yellow .label-text {
    color: #d7b13a;
    font-weight: bold;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border-radius: 3px;
}

.custom-checkbox-container input:checked ~ .checkmark {
    background-color: #888888;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.width-expansion-panel {
    background: #0a0a0a;
    border-top: 1px solid #ffffff;
    padding: 15px;
}

.hide-width-title {
    display: block;
    color: #d7b13a;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 13px;
}

.width-checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
}

.save-footer {
    margin-top: 40px;
    text-align: left;
}

.pes-save-btn {
    background-color: #d7b13a !important;
    color: #000 !important;
    font-weight: bold;
    padding: 15px 60px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
}