body {
    margin: 0;
    background: #f2f2f2;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.box {
    width: 92%;
    background: #fff;
    margin: 18px auto;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 22px;
    font-weight: 700;
}

/* Menu Icon */
.menuIcon {
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menuIcon div {
    width: 100%;
    height: 4px;
    background: black;
    border-radius: 6px;
}

.menu {
    position: absolute;
    right: 20px;
    top: 70px;
    background: black;
    color: white;
    padding: 10px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 130px;
}

.menu button {
    padding: 8px;
    background: white;
    color: black;
    border: none;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;
}

.elon {
    font-size: 17px;
    letter-spacing: 10px;
    font-weight: 600;
    margin-top: 8px;
}
.emojiWrapper{
    position: relative;
    display: inline-block;
}

#emojiBtn{
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #888;
    cursor: pointer;
    background: #fff;
}

.emojiList{
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #888;
    border-radius: 8px;
    margin-top: 2px;
    z-index: 10;
    max-height: 120px;
    overflow-y: auto;
}

.emojiList.show{
    display: block;
}

.emojiList span{
    display: block;
    padding: 5px 10px;
    cursor: pointer;
}

.emojiList span:hover{
    background: #eee;
}

#output{
    font-weight: bold; /* মোটা লেখা ঠিক রাখতে */
}
textarea {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    resize: none;
    height: 55px;
    margin-top: 10px;
    box-sizing: border-box;
}

.outputRow {
    display: flex;
    margin-top: 12px;
}

.output {
    flex: 1;
}

.copyBtn, .copyBtnExample {
    background: black;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.notice {
    margin-top: 16px;
    padding: 12px;
    background: #fff6db;
    border-left: 5px solid #f7c600;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.inputBox {
    background: #f2f2f2;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 18px;
}

.item {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circleColor {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
}

.joinContainer {
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    justify-content:center;
    margin-top:30px;
}
.item {
    display: flex;              /* Flex layout ব্যবহার */
    justify-content: space-between; /* Text বাম, Button ডান */
    align-items: center;        /* Vertical alignment ঠিক রাখে */
}
.joinContainer button {
    padding:10px 20px;
    border:none;
    border-radius:25px;
    background:linear-gradient(90deg,#ff7ad6,#6fe1ff);
    color:white;
    font-weight:bold;
    font-size:16px;
    cursor:pointer;
    transition:0.2s;
}

.copyContainer {
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    max-width:350px;
    margin-bottom:10px;
     justify-content: space-between;
}