       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

/*         body {
            font-family: 'Arial', sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        } */

          .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background:linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
}

.header h1 {
  font-size: 45px !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem;
	    color: white !important;
/*     font-family: inherit; */
	}

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .main-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #fce4ec;
        }

        .input-section {
            margin-bottom: 30px;
        }

        .input-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #c2185b !important;
            font-size: 1.1rem;
        }

        .input-container {
            position: relative;
            margin-bottom: 15px;
        }

        #textInput {
            width: 100%;
            min-height: 120px;
            padding: 15px;
            border: 2px solid #f8bbd9 !important;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            resize: vertical;
            background-color: #fafafa;
            transition: all 0.3s ease;
        }

        #textInput:focus {
            outline: none !important;
            border-color: #e91e63 !important;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
        }

        .input-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .char-count {
            font-weight: 500;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-container input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #e91e63;
        }

        .checkbox-container label {
            font-weight: 500;
            color: #666;
            cursor: pointer;
        }

        .style-buttons {
/*             display: grid; */
					display:none !important;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
        }

        .style-btn {
            padding: 12px 8px !important;
            border: 2px solid #f8bbd9 !important;
            background: white !important;
          color: #c2185b !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px !important;
        }

        .style-btn:hover {
            background: #fce4ec;
            border-color: #e91e63;
            transform: translateY(-2px);
        }

        .style-btn.active {
            background:linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
            color:White !important;
            border-color: #e91e63 !important;
        }

        .case-btn.active {
              background:linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
            color: white !important;
            border-color: #e91e63;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .action-btn {
            flex: 1;
            min-width: 120px;
            padding: 15px 20px !important;
            border: none !important;
            border-radius: 10px !important;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .clear-btn {
            background: #f5f5f5 !important;
            color: #666 !important;
            border: 2px solid #ddd !important;
        }

        .clear-btn:hover {
            background: #e0e0e0 !important;
            border-color: #bbb !important;
        }

        .output-section {
            margin-bottom: 30px;
        }

        .output-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #c2185b;
            font-size: 1.1rem;
        }

        .output-container {
            position: relative;
        }

        #outputText {
            width: 100%;
            min-height: 120px;
            padding: 15px;
            border: 2px solid #f8bbd9;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            resize: vertical;
            background-color: #fafafa;
            color: #333;
        }

        .copy-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 8px 12px !important;
            background: #e91e63 !important;
            color: white !important;
            border: none !important;
            border-radius: 6px !important;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: #c2185b;
            transform: scale(1.05);
        }

        .case-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
        }

        .case-btn {
            padding: 12px 16px !important;
            border: 2px solid #f8bbd9 !important;
            background: white !important;
            color: #c2185b !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px !important;
        }

        .case-btn:hover {
            background: #fce4ec;
            border-color: #e91e63;
            transform: translateY(-2px);
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 12px 20px;
            background: #4caf50;
            color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
            opacity: 0;
            transform: translateY(-30px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .container {
                padding: 5px !important;
            }

            .header h1 {
                font-size: 35px !important;
            }
					.header p {
						padding:5px !important;
					}

            .main-content {
                padding: 20px;
            }

            .style-buttons {
                grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
                gap: 8px;
            }

            .style-btn {
                padding: 10px 6px;
                font-size: 0.8rem;
							overflow:auto;
            }
					.case-btn {
						overflow:auto;
					}

            .action-buttons {
                flex-direction: column;
            }

            .action-btn {
                min-width: auto;
            }

            .case-options {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8rem;
            }

            .input-info {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            .style-buttons {
                grid-template-columns: repeat(3, 1fr);
            }

            .case-options {
                grid-template-columns: 1fr;
            }
        }
    