/* Existing Search Tool CSS */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
    background-color: #f7f7f7;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    color: black;
}

.input-container {
    max-width: 600px;
    margin: 0 auto;
}

table {
    margin: auto;
    border-collapse: collapse;
    margin-top: 20px;
    max-width: 600px;
    width: 100%;
}

th, td {
    padding: 10px;
    word-break: break-all;
}

textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

button {
    padding: 10px 20px;
    border: 2px solid #cc0000;
    background-color: transparent;
    color: #cc0000;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #cc0000;
    color: white;
}

.success-message {
    color: #228B22;
    display: none;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Remove borders for table */
table {
    border-collapse: collapse;
}

/* Footer adjustments */
footer {
    margin-top: 30px;
    margin-bottom: 10px;
}

footer p {
    margin-top: 10px;
}

/* New styles for the homepage */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: #f2f2f2;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #ddd;
}

.hero {
    text-align: center;
    background-color: #f2f2f2;
    padding: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #cc0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #800000;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.column {
    flex-basis: calc(33.33% - 40px);
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

#tinkering-projects h2,
#design-projects h2 {
    text-align: center;
    margin-bottom: 20px;
}

#projects {
    padding: 40px 0;
}

#tinkering-projects .columns,
#design-projects .columns {
    margin-top: 20px;
}

/* Add your existing CSS styles here */

.clear-link {
    font-size: 12px;
    color: #888;
    cursor: pointer;
    bottom: 10px;
    right: 10px;
}

.clear-link:hover {
    text-decoration: underline;
}

.counter {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

/* Rest of your existing styles */

