        .char-counter-tool {
            background: #ffffff;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 90%;
            
        }



        textarea {
            width: 100%;
            height: 150px;
            padding: 12px;
            font-size: 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        textarea:focus {
            border-color: #007BFF;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
            outline: none;
        }

        button {
            display: block;
            width: 100%;
            background-color: #007BFF;
            color: white;
            border: none;
            padding: 12px 0;
            font-size: 16px;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-bottom: 20px;
        }

        button:hover {
            background-color: #0056b3;
        }

        .result {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin-top: 10px;
        }

        .result p {
            background: #f9f9f9;
            padding: 12px;
            border-radius: 6px;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .result span {
            font-weight: bold;
        }

		.explanation {
			margin-top: 20px;
			padding: 20px;
			background-color: #f9f9f9;
			border-radius: 12px;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
			font-size: 16px;
			color: #4a4a4a;
			line-height: 1.8;
			box-sizing: border-box;
		}
		
		.explanation-title {
			font-size: 20px;
			font-weight: bold;
			color: #333;
			margin-bottom: 15px;
			text-align: left;
			border-bottom: 2px solid #e0e0e0;
			padding-bottom: 10px;
			display: inline-block;
			width: 100%;
		}
		
		.explanation-list {
			list-style: none;
			padding: 0;
			margin: 0;
		}
		
		.explanation-list li {
			display: flex;
			align-items: center;
			margin-bottom: 12px;
			padding: 10px;
			border-radius: 8px;
			background-color: #ffffff;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
		}
		
		.explanation-list li:hover {
			transform: translateY(-2px);
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		}
		
		.icon {
			font-size: 20px;
			margin-right: 12px;
			color: #007BFF;
			flex-shrink: 0;
		}
		
		b {
			color: #333;
			margin-right: 5px;
		}


        @media (max-width: 480px) {
            .result {
                grid-template-columns: 1fr;
            }

            button {
                font-size: 14px;
                padding: 10px 0;
            }

            .explanation {
                font-size: 13px;
            }
        }