/* CSS Document */
        /* Container for the custom dropdown */
        .dropdown {
            position: relative;
            display: inline-block;
            width: 100%;
            margin-bottom: 20px;
        }

        /* Button to trigger the dropdown */
        .dropdown-btn {
            background-color: #f1f1f1;
            padding: 10px;
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 5px;
            cursor: pointer;
            text-align: left;
        }

        /* Dropdown content (hidden by default) */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            width: 100%;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
            margin-top: 5px;
            border-radius: 5px;
        }

        /* Each item in the dropdown */
        .dropdown-content .color-option {
            display: flex;
            align-items: center;
            padding: 10px;
            cursor: pointer;
        }

        .dropdown-content .color-option:hover {
            background-color: #ddd;
        }

        /* Colored box */
        .color-box {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            border-radius: 3px;
        }

        /* Show dropdown on click */
        .dropdown.active .dropdown-content {
            display: block;
        }
