.palette-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.color-box {
    width: 100px;
    height: 100px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn {
    padding: 10px 20px;
    background-color: #1971c2;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:hover {
    background-color: #1864ab;
}

.palette-preview {
    display: flex;
    gap: 10px;
}

.palette-color {
    width: 50px;
    height: 50px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.palette-color span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 12px;
}

.palette-color button {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-size: 10px;
}

.saved-palettes {
    margin-top: 20px;
}
.saved-palette-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 10px;
}
.saved-palette-item button {
    margin-left: 10px;
}
