body {
    margin: 0;
    padding: 0;
}

.modal-body {
    max-height: 500px;
    overflow-y: auto;
}

.color-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-selector select {
    padding: 5px;
}

.color-box {
    width: 100px; /* Bredde på fargeboksen */
    height: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff; /* Default farge */
    color: #fff; /* Tekstfarge */
    font-weight: bold;
}

.color-box span {
    text-align: center;
}
