/* Container Layout */
form {
  max-width: 80%;
  margin: 20px auto;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  font-family: sans-serif;
}

/* Stacking fields vertically */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

/* Label design */
label {
  margin-bottom: 6px;
  margin-top: 4px;
  //font-weight: 600;
  //color: #333333;
  //font-size: 14px;
}

/* Input Fields */
input[type="text"],
input[type="email"],
select ,
textarea {
  padding: 2px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}

/* Highlight input field when active */
input:focus, 
select:focus, 
textarea:focus {
  border-color: #0066cc;
}

/* Action Button */
button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #0052a3;
}

.results-container {
	padding: 15px;
    background-color: #fff;
	border: 2px solid #ddd;
    max-width: 85%;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	place-items: center;
}

.results-list {
    display: block;
	width: 100%;
}

/* Result Card Styling */
.result-card {
    border: 1px solid #ddd;
	box-sizing: border-box;
    padding: 15px;
    margin: 15px auto;
    background-color: #cccccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	width: 100%;
}

.result-card h3 {
	font: "Courier New";
    margin-top: 0;
    color: #007bff;
    font-size: 1.2em;
	background-color: #999999;
	padding: 10px;
}

.result-card .author-name {
    font-weight: 600;
	padding: 10px;
    //color: #555;
}

.result-card .keywords {
    margin-top: 10px;
    font-size: 0.9em;
    color: #000;
	padding: 10px;
}

.result-card .keyword {
    display: inline-block;
    background-color: #e9f5ff;
    border-radius: 3px;
    padding: 4px 8px;
    margin-left: 10px;
    border: 1px solid #bfe8f2;
}


.link-button {
    background: #ccccc;
    border: none;
    color: #0000ee;
    text-decoration: underline;
    cursor: pointer;
    //padding: 0;
    font: inherit;
  }
  .link-button:hover {
    color: #551a8b;
  }