/* Style for the placeholder options */
select option[disabled]:first-child {
  color: #6c757d ;
}

/* Style for the select placeholder text */
select::placeholder {
  color: #6c757d ; 
}

.profile {
  /* position: absolute; */
    /* right: 100px;
    top: 30px; */
    height: auto;
    width: auto;
    max-height: 160;
    /* border-radius: 10%;
    object-fit: cover;
    overflow: hidden; */
}

.inputContainer {
  display: flex;
  margin-bottom: 20px;
  width: 80%;
  max-width: 600px;
}

.urlInput {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.analyzeButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}
.resultsContainer {
  width: 80%;
  max-width: 800px;
  border: 1px solid #eee;
  padding: 20px;
  margin-top: 20px;
  display: none;
}
.loadingMessage {
  display: none;
  margin-top: 20px;
}