.color-picker {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.color-picker button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.color-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin:50px 0;
}

.color-display {
    text-align: center;
    border: 1px solid var(--form-border-background-color);
    background-color: var(--form-background-color);
    padding: 20px;
    border-radius: 5px;
    width:calc(25%  - 57px);

}

@media (max-width: 1160px) {
    .color-display {
        width:calc(33.33%  - 56px);
    }
}

@media (max-width: 888px) {
    .color-display {
        width:calc(50%  - 52px);
    }
}

@media (max-width: 610px) {
    .color-display {
        width:calc(100%  - 42px);
    }
}



.color-display p {
    margin: 5px 0;
}

.rgb-display, .hex-display, .hsl-display {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    text-align: center;
}

.color-display input[type="text"] {
    width: 100%;
    text-align: center;
    border-radius: 5px 0 0 5px;
    padding: 5px;
    height: 33px;
    border:0;
    border-right: 1px solid var(--form-background-color);
}

.color-display input[type="color"] {
    width: 100%;
    height: 120px;
    margin-bottom: 5px;
    border-radius: 5px;
    padding:0;
}

.copy-button {
    background-color: var(--accent-color);
    color: var(--accent-font-color);
    padding: 10px;
    width: 13px;
    height: 13px;
    display: flex; /* Use Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    transition: background 0.3s;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

.copy-button:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-font-color);
}



.notification {
    display: none;
    position: fixed;
    top: 320px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.button-display {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background-color: var(--accent-color);
    color: var(--accent-font-color);
    border-radius: 5px;
    padding: 0 7px
    
}

.button-display i{
    cursor: pointer;
    padding:10px;
    transition: background 0.3s;
    border-left: 1px solid var(--form-background-color);
    flex: 1;
}


.remove-button {
    color: #ff0000;
    border-right: 1px solid var(--form-background-color);
}

.remove-button:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-font-color);
}

.button-display i:hover{
    background-color: var(--secondary-color);
    color: var(--secondary-font-color);
}


.monochromatic-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    margin-top: 20px;
}

.color-strip {
    flex: 1;
    height: 80px;
    cursor: pointer;
    border:0;
    transition: transform 0.2s;
}

.color-strip:hover {
    transform: scale(1.1);
}