body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: #68c8d8;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

.logo-left img  {
    width: 100px;
    height: 100px;
}

.logo-right img
{
    width: 150px;
    height: 100px;
}



.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.form-group.inline {
    display: flex;
    gap: 20px;
}

.form-group.inline > div {
    flex: 1;
}

.form-group.inline .motivo select {
    width: 150px;
}

.signature-line {
    border-bottom: 1px solid #000;
    height: 20px;
    margin-top: 10px;
}

.signatures {
    margin-top: 30px;
}

.jefe {
    text-align: center;
    margin-top: 30px;
}

.jefe p {
    margin: 5px 0;
    font-weight: bold;
}

.observaciones h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.observaciones ul {
    list-style-type: disc;
    padding-left: 20px;
}

.observaciones li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}

footer p {
    margin: 5px 0;
}