.gn-wrapper {
        padding: 20px;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: sans-serif;
    }

    .gn-title {
        width: 320px;
        background: #10171f;
        color: #ffffff;
        font-weight: 900;
        font-size: 20px;
        padding: 14px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 20px;
        box-sizing: border-box;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .gn-search {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        background: #10171f;
        padding: 10px 15px;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        align-items: center;
        transition: box-shadow 0.3s;
        width: 100%;
        max-width: 400px;
    }

    .gn-search input {
        padding: 10px 14px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 15px;
        flex: 1;
        transition: border 0.2s;
    }

    .gn-search input:focus {
        border-color: #007bff;
        outline: none;
    }

    .gn-search button {
        padding: 10px 16px;
        background-color: #ffc400;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .gn-search button:hover {
        background-color: #e0a800;
    }

    .gn-name {
        font-size: 20px;
        margin-bottom: 10px;
        color: #000000;
        font-weight: 500;
        background-color: #f1f8ff;
        border-radius: 8px;
        padding: 8px 14px;
        box-shadow: 0 2px 6px rgba(0, 123, 255, 0.1);
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .gn-grid {
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 6px;
        margin-bottom: 15px;
    }

    .gn-grid img {
        width: 110px;
        height: 110px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        border: 2px solid transparent;
    }

    .gn-grid img.gn-selected {
        border: 2px solid #ffc107;
        box-shadow: 0 0 8px #ffc107;
        transform: scale(1.05);
    }

    .gn-pagination {
        margin-top: 10px;
        display: flex;
        gap: 10px;
    }

    .gn-pagination button {
        background-color: #444;
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .gn-pagination button:hover {
        background-color: #222;
    }

    .gn-pagination button:disabled {
        background-color: #888;
        cursor: not-allowed;
    }

    .btn {
        margin-top: 15px;
    }

    .btn img {
        border-radius: 8px;
        transition: transform 0.2s;
    }

    .btn img:hover {
        transform: scale(1.03);
    }