/* (same CSS from your original HTML) */
        #result {
          margin-top: 20px;
          text-align: center;
          font-size: 15px;
        }
        .indexed {
          background-color: #e6ffed8f;
          border-left: 4px solid #22c55e;
          padding: 10px;
          margin-bottom: 10px;
          border-radius: 6px;
        }
        .noIndex {
          background-color: #fff0f085;
          border-left: 4px solid #f43f5e;
          padding: 10px;
          margin-bottom: 10px;
          border-radius: 6px;
        }
        .noIndex span {
          color: red;
          font-weight:700;
        }
        .indexed span {
          color: green;
          font-weight:700;
        }
        div#result p {
          color: #000;
        }
        span {
          display: block;
          margin-top: 6px;
        }
        .noIndex p, .indexed p {
          display: flex;
          align-items: end;
        }
        button.checkMeta {
          max-width: 200px;
        }
        .noIndex p span, .indexed p span {
          margin-left: 5px;
        }
        
        input#urlInput {
           margin-bottom: 15px;
         }

        .indexed p {
           margin-bottom: 5px;
         }
         
         
         @media(max-width:991px){
            div#result p{
                flex-direction:column;
                align-items:baseline;
            }
    }
    
div#resultsListCheck {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
textarea#urlInput {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 150px;
}
div#result h3 {
    text-align: left;
    font-weight: 600;
}