 .container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .genre {
            padding: 10px;
            border: 1px solid white;
            border-radius: 5px;
            cursor: pointer;
            width: 120px;
            text-align: center;
            font-weight: bold;
            color: white;
            background-color: #ffa64e;
        }

        .genre:hover{
            background-color: white;
            color: #ffa64e;
            font-weight: bold;
            border: 1px solid #ffa64e;
            border-radius: 5px;
        }

        .idiomas{
            width: 400px !important;
        }

        .hidden {
            display: none;
        }
        .button-container {
            margin-top: 20px;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: not-allowed;
            border-radius: 5px;
            border: 1px solid grey;
        }
        button.enabled {
            cursor: pointer;
            background-color: transparent;
            color: green;
        }

        button.enabled:hover {
            cursor: pointer;
            background-color: green;
            color: white;
        }