        /* Base styles */
        .converter-tab .nav-link {
            color: black;
            padding: 0.5rem 1rem;
            border: 0;
            position: relative;
            font-size: 15px;
            font-weight: 600;
        }

        /* Active state styles */
        .converter-tab .nav-link.active {
            color: var(--primary-color);
        }

        .converter-tab .nav-link.active::before {
            width: 100%;
        }

        /* Textarea styles */
        .textarea {
            height: 70vh;
            /* Adjust the percentage to your desired height */
            font-size: 18px;
        }

        /* Unicode box styles */
        .unicode-box .textfield {
            padding: 1rem;
            outline: none;
            resize: none;
            max-height: none;
            transition: all 300ms ease-in-out;
        }

        .unicode-box .textfield:focus {
            box-shadow: unset;
        }

        .unicode-box .textfield::placeholder {
            font-size: 16px;
        }

        /* Typography */
        #preetiTextArea {
            font-size: 24.5px;
            line-height: 1.1;
        }

        .title-names {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        /* Layout */
        .col-md-6 {
            padding-right: 0;
            padding-left: 5px;
        }

        .dark-mode {
            background-color: black;
            color: white;
        }
