body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header, nav, footer {
    background-color: #eae5e5;
    color: white;
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

.company-form {
    max-width: 600px;
    margin-bottom: 20px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th {
    width: 200px;
    text-align: right;
    padding-right: 10px;
    font-weight: bold;
}

.company-table td {
    padding: 5px 0;
}

.company-table input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-button {
    margin-top: 10px;
    margin-left: 210px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #45a049;
}

.projects-heading {
    color: #666; /* Grey color for the heading */
    margin-top: 30px;
    margin-bottom: 15px;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
}

.projects-table th, .projects-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.projects-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.license-link {
    display: block;
    text-align: left;
    text-decoration: none; /* Remove underline */
    color: azure;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
    margin: 10px 0; /* Add margin */
}

.license-link:hover {
    background-color: azure;
    color: white;
    cursor: help;
    margin-left: 5px;
    margin-right: 5px;
    padding: 2px;
    border: 1px solid lightgray;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
}

.license-link:link,
.license-link:visited {
    text-decoration: none; /* Remove underline */
    color: brown; /* Ensure link color is brown */
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 2em;
    flex: 1 0 auto;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.header {
    background-color: #f0f0f0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.73);
}

.logo-container {
    display: flex;
    align-items: center;
    height: 48px; /* Adjust this value to set the desired header height */
}

.logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

copyright-info {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

.content {
    padding: 20px;
}

header {
    background-color: #003366;
    padding: 20px 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #005599;
    margin: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #0077cc;
}

footer {
    flex-shrink: 0;
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

.license-link {
    color: #003366; /* Use color from eformas-logo.svg */
    border: 1px solid #003366; /* Use color from eformas-logo.svg */
}