﻿.widget-container {
    background-color: #d1d1d1;
    padding: 20px;
    border-radius: 15px;
    max-width: 450px;
    width: 100%;
}

.widget-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .widget-title label {
        font-size: 18px;
        font-weight: bold;
    }

    .widget-title input {
        padding: 10px;
        border: none;
        border-radius: 10px;
        background-color: #bfbfbf;
        width: 70%;
    }

.widget-color-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .widget-color-row label {
        font-size: 16px;
        font-weight: bold;
    }

.widget-color-picker {
    width: 50px;
    height: 30px;
    padding-right:5px;
    /*border-radius: 50%;*/
    /*border: 2px solid #000;*/
   /* background: conic-gradient( red, yellow, green, cyan, blue, magenta, red );*/
}

.widget-save-button {
    display: flex;
    justify-content: flex-end;
}

    .widget-save-button button {
        padding: 10px 20px;
        background-color: #000;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .widget-save-button button:hover {
            background-color: #444;
        }

@media (max-width: 768px) {
    .widget-container {
        padding: 15px;
    }

    .widget-title input {
        width: 65%;
    }

    .widget-color-row {
        flex-direction: column;
        align-items: flex-start;
    }

        .widget-color-row label {
            margin-bottom: 5px;
        }
}
