<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.tool-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
}


.input-output-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.text-area-container {
    position: relative;
}

.text-area {
    width: 100%;
    height: 300px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: none;
    transition: border-color 0.3s;
}

.text-area:focus {
    outline: none;
    border-color: #4a90e2;
}

.character-count {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.style-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    background: transparent;
    color: #4a90e2;
    cursor: pointer;
    transition: all 0.3s;
}

.style-button.active {
    background: #4a90e2;
    color: white;
}

.style-button:hover {
    background: #4a90e2;
    color: white;
}

.action-button {
    padding:12px 22px;
    margin: 25px;
  
}

.action-button:hover {
    background: #108339;
}

.action-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.copy-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
}

.copy-button:hover {
    background: #e9ecef;
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    color: #dc3545;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    background: #f8d7da;
    display: none;
}

.error-message.visible {
    display: block;
}
@media (max-width: 768px) {
    .input-output-grid{
        display:block;
    }
    .controls{
        display: flex;
        flex-wrap: wrap;
    }
}</pre></body></html>