.jumbotron {
    color: #fff;
    padding: 2px 0 5px;
    font-family: Montserrat, sans-serif;
    background-color: #ffffff !important;
  }
  .jumbotron h1 {
    font-size: 22px !important;
    font-weight: bold;
    line-height: 1.2;
  }
  .jumbotron p {
    padding: 5px; 
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 18px;
    display: none;
  }


  /* @media screen and (max-width: 768px) {
    .col-sm-4 {
      text-align: center;
      margin: 25px 0;
    }
    .btn-lg {
      width: 100%;
      margin-bottom: 35px;
    }
  } */
  .toolcard {
    border: 2px solid #198FC5;
    height: 200px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    background-color: #f8f8f8;
    transition: background-color 0.3s; /* Add transition for smooth color change */
  }
  .toolcard:hover {
    background-color: #198FC5; /* Change background color on hover */
    border-color: #000000;
  }
  .toolcard:hover .tool-card-content {
    text-decoration: none !important; /* Remove underline on hover */
    color: white;
  }
  
  .toolcard:hover {
    text-decoration: none !important; /* Remove underline on hover for the anchor */
    
  }
  
  .tool-card-content {
    margin: 15px;
    text-align: center !important;
    transition: text-decoration 0.3s, font-weight 0.3s; /* Add transition for smooth text effect */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;
  }
  
  
  .tool-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1220px;
  }

  .content-box {
    box-shadow: 0 5px 15px rgba(0,0,0,.16);
    border-radius: 5px;
    margin: 0.5em;
    padding: 0.5em;
    background: #fff;
    text-align: left;
    border: 2px solid;
    border-color: #b7b7b7;
    color: #000;
    overflow:  hidden;
  }
  .content-box p {
    font-size: 16px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 200;
    text-align: justify;
    margin-bottom: 20px;
  }
  .content-box ul {
    font-size: 16px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 200;
    text-align: justify;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .text-area-box {
    box-shadow: 0 5px 15px rgba(0,0,0,.16);
    border-radius: 5px;
    margin: 0.5em;
    padding: 0.5em;
    background: #fff;
    text-align: left;
    border: 2px solid;
    border-color: #b7b7b7;
    color: #000;
    position: relative;
  }
  .text-area-box textarea{
    text-align: justify;
  }
  .txt-area {
   position: relative;
  }
  .clr-txt-area {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: none;
    background-image: url(../images/clear-text-icon2.svg);
    height: 30px;
    width: 30px;
    display: inline-block;
    background-size: contain; /* or cover, depending on your preference */
    background-repeat: no-repeat;
    background-position: center;
  }
   .clr-txt-area:hover{
		background-image: url(../images/clear-text-icon2.svg) !important;
		background-repeat: no-repeat;
		background-position: center;
	    background-size: 30px;
   }
  /* Style for the tooltip */
  .clr-tooltip {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 2px 5px;
    position: absolute;
    bottom: calc(100% + 5px); /* Position the tooltip above the button */
    right: 0;
    transform: translateX(15%);
    width: 40px;
  }
  /* Show the tooltip on button hover */
  .clr-txt-area:hover .clr-tooltip {
    visibility: visible;
  }
  #input{
    resize: none;
    border: none;
    outline: 0;
    height: auto;
    width: 100%;
    min-height: 90px;
  }
  #output{
    text-align: center !important;
  }
  #output span {
    font-size: 18px !important;
    text-align: justify !important;
  }
  .font-style {
    border: 1px solid #b7b7b7;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: block;
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 5px;
    color: #000;
    position: relative;
  }
  .font-style:hover{
    border: 1px solid #5b6bf5;
  }
  .load-more-btn {
    background: #3b71ca;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 5px;
  }
  .load-more-btn:hover{
    padding: 12px 30px;
  }
  
  .copy-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    background-image: url('../images/copy--v1.png');
    background-color: #ffffff !important;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    opacity: 0.6;
  }
  .copy-btn:hover {
    opacity: 1;
    background-image: url('../images/copy--v1.png') !important;
  }
  .tool-copied {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    background-image: url('../images/tick-mark.png');
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
  }
  
  .copy-tooltip::before {
    content: 'Kopieren';
    position: absolute;
    top: -28px; /* Adjusted to position above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .copy-btn:hover .copy-tooltip::before {
    opacity: 1;
  }
  
  
  
  
  .footer {
    background: linear-gradient(to right, #000000, #198FC5, #198FC5, #000000) !important;
    text-align: center !important;
    padding: 15px 0 !important;
    overflow: hidden;
  }
  .footer-menu {
    list-style-type: none;
    justify-content: center;
    margin: 0 20px;
    padding: 0;
  }
  
  .footer-menu li {
    margin: 5px 10px;
    display: inline-block;
  }
  
  .footer-menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
  }
  
  .footer-menu li a:hover {
    text-decoration: none;
    font-weight: bold;
  }
  .footer p {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin: 0 20px;
  }
  .footer p a {
    color: #ffffff;
  }
  
  
  .language-selector{
    float: right;
    margin: 10px;
    max-height: 200px;
    overflow-y: auto;
  }
  
  
  #char-counter {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    text-align: left; /* Align the counter to the right */
    margin-right: 30px;
    font-weight: bold;
  }
  
  
  
  
  .counter-section { margin: 20px 0; padding: 20px; border: 1px solid #ccc; }
  .hidden { display: none; }
  button { padding: 10px 20px; font-size: 16px; }
  .code { font-size: 24px; font-weight: bold; margin: 20px 0; }
  
      