/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Verdana', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.8rem;
    color: #006600;
    margin-bottom: 10px;
    text-align: center;
}

.dados {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    text-align: center;
}

.arquivo {
    margin: 20px 0;
    text-align: center;
}

.document-image {
    max-width: 100%;
    height: auto;
}

.pdf-link {
    color: navy;
    text-decoration: none;
    font-weight: bold;
}

.pdf-link:hover {
    color: #FF6600;
}

.leis-relacionadas {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #808080;
    border-radius: 4px;
}

.leis-relacionadas h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.leis-relacionadas .legenda {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.leis-relacionadas ul {
    list-style: none;
}

.leis-relacionadas li {
    display: inline;
    margin-right: 10px;
}

.relacao-link {
    color: navy;
    text-decoration: none;
    font-size: 0.9rem;
}

.relacao-link:hover {
    color: #FF6600;
}

.font-size-controls {
    text-align: right;
    margin: 10px 0;
}

.font-size-controls button {
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    background: #006600;
    color: white;
    border: none;
    border-radius: 4px;
}

.font-size-controls button:hover {
    background: #FF6600;
}

.lei-corpo {
    font-size: 1rem;
    margin-top: 20px;
    text-align: justify;
}

.mensagem {
    text-align: center;
    color: red;
    font-weight: bold;
    margin-top: 20px;
}
