html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Overpass', Helvetica, Arial, Lucida, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background-color: #f7f7f7;
    min-height: 100vh;
}

.signature-container {
    flex-grow: 1;
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
}

.signature {
    width: 100%;
}

.signature table {
    width: 50%;
    border-spacing: 0;
    margin-bottom: 20px;
}

.signature td {
    vertical-align: middle;
    text-align: left;
    padding: 5px;
}

.profile-picture, .company-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: 10px;
}

.signature p {
    margin: 0;
    line-height: 1.4;
}

.signature p.name {
    font-weight: bold;
    font-size: 16px;
}

.signature p.position {
    font-size: 14px;
    color: #555;
}

.company-data p {
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
}

#custom-text {
    margin-top: 10px;
}

.styled-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    margin-bottom: 15px;
}

.styled-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 5px rgba(26, 115, 232, 0.4);
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

input[type="text"]::placeholder {
    color: #aaa;
    font-style: italic;
}

.input-container table {
    margin-left: 20px;
    margin-right: 20px;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    background-color: #f7f7f7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: #1a73e8;
    color: white;
    position: relative;
    font-size: 14px;
}

.footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}
