/* Contact Form Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Lato', sans-serif;
}

.contact-container {
    max-width: 400px;
    margin: 60px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
}

.contact-container h1 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 8px 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-container textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-container button {
    width: 100%;
    padding: 8px;
    background-color: #808080;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-container button:hover {
    background-color: #0056b3;
}

.resume-form-container {
    margin-top: 50px; /* Adjust this value as needed */
}

.resume-form-container button {
    width: 20%;
    padding: 8px;
    background-color: #808080;
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Projects Section */

.projects {
    margin-bottom: 90px;
  }
  
  .projects .container h1 {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: "Playfair Display SC", serif;
    font-size: 26px;
    color: #333333;
    position: relative;
  }
  
  /* Project list styling */
  .projects .work-list {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 25px;
  }
  
  .projects .work-list li {
    list-style: none;
    font-size: 0.95em;
    color: #666;
    margin: 5px 0;
  }
  
  /* Links for project titles */
  .projects .work-list li a {
    display: inline-block;
    padding-bottom: 3px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #b3b3b3;
    color: #4e4e4e;
    transition: all 0.2s ease-in-out;
  }
  
  .projects .work-list li a:hover {
    border-bottom: 1px solid #333333;
    color: #333333;
  }
  
  /* Small role/description text (last item in list) */
  .projects .work-list li:last-child {
    font-size: 0.9em;
    color: #555;
  }
  

<style>
.alert-success { color: green; font-weight: bold; }
.alert-error { color: red; font-weight: bold; }
</style>
