.converter-container {
    max-width: 1200px;
    margin: auto;
}

#content {
    text-align: center;
    margin-bottom: 30px;
}

#head {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 10px;
    background: linear-gradient(180deg, #6630C6 0%, #330F95 100%);
    border-radius: 12px;
    color: #fff;
}
.headers h1 {
    font-size: 45px !important;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}


.headers p {
    font-size: 1.1em;
    opacity: 0.95;
}


.editor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.editor-box {
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1f2937;
}

.editor-head {
    background: #1f2937;
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
}

textarea {
    width: 100%;
    min-height: 400px;
    background: #0b1120;
    color: #e5e7eb;
    border: none;
    outline: none;
    resize: vertical;
    padding: 15px;
    font-size: 15px;
    font-family: monospace;
    line-height: 1.6;
}

.action-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
    justify-content: center;
}

button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

.btn-primary {
    background: #00d1b2;
    color: #000;
}

.btn-secondary {
    background: #222;
    color: #fff;
}

.btn-danger {
    background: #330f95 !important;
    color: #fff;
}

.btn-danger:hover{
	animation:shakeX .55s;
}

button:hover {
    opacity: 0.9;
}
.editor-head {
    background: #1f2937;
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-icon {
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.copy-icon:hover {
    color: #00d1b2;
}

.icon-btn {
	background: #330f95 !important;
    width: 10% !important;
/*     height: 10% !important; */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:768px){
    .editor-wrapper {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
    }

    textarea {
        min-height: 250px;
    }
}