.container {
    padding-top: 100px !important;
    max-width: $page-width;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 60px;
}

input[type="text"], textarea, input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

input[type=text] {
    padding: 0 15px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    width: 500px;
    max-width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    font-weight: 400;
}

input[type=text]:focus {
    border-color: #005BF3;
}

#result {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

#saveButton {
    margin-left: 10px;
}

#stopButton {
    background-color: #f44336;
    border: 2px solid #f44336;
    display: none;
    margin-left: 10px;
    color: #fff;
}

#stopButton:disabled {
    background-color: #fbc0bc !important;
    border: 0;
    color: #6e6e6e;
    cursor: not-allowed !important;
}

#stopButton:hover {
    cursor: pointer;
    background-color: #d32f2f;
    border: 2px solid #d32f2f;
}

.progress {
    margin-top: 10px;
    font-style: italic;
}

pre {
    white-space: pre-wrap;
    width: 100%;
}

.loader {
    display: inline-block;
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.keywords-faq {
    margin-top: 10px !important;
}

.tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px #7A7E86 dashed;
  }
  
  .tooltip:before {
    content: attr(data-tooltip); /* here's the magic */
    position: absolute;
  
    /* vertically center */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  
    /* move to right */
    left: 100%;
    margin-left: 5px;
  
    max-width: 16rem;
    width: max-content;
  
    padding-left: 3px;
    padding-right: 2px;
    border-radius: 4px;
    background-color: #1d1d1d;
    color: #fff;
  
    text-align: center;
  
    display:none; /* hide by default */
  }
  
  .tooltip:hover:before {
    display:block;
  }