@font-face {
    font-family: 'Kruti Dev 010';
    src: url('https://cdn.jsdelivr.net/gh/-arawat/Hindic-Fonts/Kruti-Dev-010.ttf') format('truetype');
}
.font-converter-widget {
    font-family: 'Inter', sans-serif;
    background-color: #008080;
    padding: 2rem 1rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
}
.kruti-dev-text {
    font-family: 'Kruti Dev 010', sans-serif;
    font-size: 22px;
    line-height: 1.6;
}
.unicode-text {
    font-size: 20px;
}
.converter-container {
    max-width: 1800px;
    margin: 0 auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: none;
}
.textarea-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    overflow: hidden;
    border: 1px solid #ddd;
}
.textarea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #F54927;
    color: white;
    border-bottom: 1px solid #a00;
}
textarea.krutidev-converter-textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    outline: none;
    resize: vertical;
    min-height: 600px;
    background-color: #ffffff;
}
#converter-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    background-color: #28a745;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
    z-index: 10000;
}
#converter-notification.show {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}
.converter-actions {
    background-color: #FFB300;
    padding: 1rem;
    margin-top: 2rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .7; }
}