.converter-container {
    margin: 0 auto 30px;
}

.tool-hero {
    background: white !important;
    padding: 25px !important;
    border-radius: 5px !important; 
}

.tool-logo {
    width: 80px;
    margin: auto !important;
    justify-content: center !important;
    display: flex;
}

.tool-title {
    justify-content: center !important;
    display: flex;
    margin-top: 8px;
}

.input-section {
    margin-bottom: 20px;
    position: relative;
}

textarea.form-control {
    width: 100%;
    height: 210px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
    transition: border 0.3s;
}

textarea.form-control:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(206, 201, 218, 0.2);
}

.char-count {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 8px;
    border-radius: 10px;
}

.options-section {
    margin-bottom: 20px;
}

.conversion-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.option-btn {
    padding: 10px 15px;
    background-color: #f3f4f6;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.option-btn:hover {
    background-color: #e4e6e9;
}

.option-btn.active {
    background-color: #4361ee;
    color: white;
    border-color: #4361ee;
}

.output-section {
    background-color: #f7f9fc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.output-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.copy-btn {
    background-color: #1bb55ee8;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.2s;
}

.copy-btn:hover {
    background-color: #32a363e8;
}

.output-text {
    min-height: 160px;
    padding: 15px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    word-break: break-all;
}

/* Responsive styles */
@media (max-width: 768px) {
    .conversion-options {
        justify-content: center;
    }
}