        body {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding-top: 70px;
            padding-bottom: 60px;
        }
        .lang-selector {
            padding: 12px 15px;
        }
        
        .lang-selector select {
            background-color: #444;
            color: #fff;
            border: 1px solid #555;
            padding: 5px 8px;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .lang-selector select option {
            background-color: #333;
        }
        
        .panel {
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .panel-heading {
            background-color: #4caf50;
            color: white;
            padding: 15px 20px;
            border-bottom: 1px solid transparent;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }
        
        .panel-body {
            padding: 20px;
            background-color: white;
        }
        
        .word-count {
            margin-top: 5px;
            font-size: 12px;
            color: #999;
            text-align: right;
        }
        
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            resize: vertical;
            min-height: 100px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-textarea:focus {
            border-color: #4caf50;
            outline: none;
            box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
        }
        
        #font-list {
            padding: 0;
            margin: 20px 0 0 0;
        }
        
        #font-list li {
            border: solid 1px #eee;
            border-radius: 6px;
            padding: 15px;
            background-color: #fff;
            margin-bottom: 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        #font-list li:hover {
            border-color: #4caf50;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        #font-list li input {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .font-text {
            padding-right: 80px;
            font-size: 1.5rem;
            color: #333;
            word-break: break-word;
        }
        
        .btn-copyit {
            background-color: #4caf50;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .btn-copyit:hover {
            background-color: #3d9140;
        }
        
        .tool-note {

            max-width: 100%;
            margin: 30px auto 0 auto;
            position: relative;
            background: #fffbf3;
            border: 1px dotted #ffd08d;
            padding: 15px 20px;
            color: #212529;
            border-radius: 6px;
            margin-bottom: 1.5rem; 
            font-size: 1.6rem; 
            font-weight: normal;
        }
.tool-note .p-right {
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    align-items: flex-start;
}

.tool-note .p-right img {
    width: 175px; 
    margin-left: 10px; 
}
        .footer {
            background-color: #333;
            color: #9d9d9d;
            padding: 30px 0;
            margin-top: 40px;
        }
        
        .footer p {
            margin: 0;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .font-text {
                font-size: 1.2rem;
                padding-right: 70px;
            }
            
            .btn-copyit {
                padding: 4px 8px;
                font-size: 12px;
            }
            
            .lang-selector {
                padding: 10px 15px;
                border-top: 1px solid #444;
            }
            
            .navbar-nav > li {
                float: none;
            }
            .tool-note  {font-size: 1.4rem;}
                  .tool-note .p-right {
        display: block; 
    }

    .tool-note .p-right img {
        width: 100%; 
        margin-left: 0; 
        margin-top: 10px; 
    }
        }