@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

body > h1 {
    text-align: center;
}

.bills {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.bills > .bill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: lightgray;
    border-radius: 33px;
    height: 100%;
    width: 80vw;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
}

.bills > .bill > div {
    margin-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
}

.bills > .bill > .analysis {
    background-color: green;
    height: 40px;
    width: 120px;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.admin-bill {
    margin: 20px;
}

.bills > .bill .analysis:hover {
    background-color: rgb(69, 230, 69);
}

.bills > .bill .analysis a {
    color: white;
    text-decoration: none;
    text-align: center;
}

.bills > .bill > .number {
    font-weight: bold;
}
.search-container {
    text-align: center;
    margin: 20px 0;
}

.search-container form {
    display: inline-block;
    margin: 0 auto;
}