html {
   min-width: 940px;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    margin-top: 50px;
    color: #333;
}
#searchForm {
    margin-top: 20px;
    display: flex;
    width: 46%;
}

#query {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}
#searchForm button {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;
    background-color: #4285f4;
    color: white;
    cursor: pointer;
}
#searchForm button:hover {
    background-color: #357ae8;
}
#results {
    margin-top: 20px;
    width: 45%;
}
#relevance {
    margin-top: 20px;
    width: 70%;
    font-family: 'Courier New';
    font-size: 16px;
    border: 2px solid black;
    padding: 10px;
    background-color: #f5f5f5;
    display: inline-block;
    
}
/* body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

#note-container {
    width: 60%;
    margin-top: 20px;
}

.result {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px 0;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-title {
    font-weight: bold;
    font-size: 1.2em;
    color: #1a0dab;
}
.result-title:hover {
    text-decoration: underline;
}

.result-url {
    color: #006621;
    text-decoration: none;
    margin-top: 5px;
}
.result-author {
    color: #006621;
    text-decoration: none;
    margin-top: 5px;
}    
.result-tags {
    color: #1a73e8; /* Blue color */
    text-decoration: none;
    margin-top: 5px;
    font-size: 14px;
    padding: 5px 10px; /* Add padding */
   
}

.result-summary {
    margin: 10px 0;
    color: #4d5156;

    }

.result-url:hover {
    text-decoration: underline;
}

.note {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.note-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.abstract-button {
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;
    background-color: #d1c4e9;
    color: #4a148c;
    cursor: pointer;
}
.abstract-button:hover {
    background-color: #b39ddb;
}

.suggestion {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial;
    background-color: #f9f9f9;
    font-size: 16px;
}

.sticky-note {
    padding: 2px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
}

.grid-item {
    border: 1px solid black;
    border-radius: 10px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    color:black;
}

.make-link {
    background-color: #4286f4e0;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    position: relative;
    float:right;
    text-decoration: none;
    font-size: 10px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}
