@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    margin: 20px;
    background-color: #f4f4f4;
}
.container {
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
}
/* h1, h2 {
    color: #333;
    border: 1px solid #2A7B9B;
    border-radius: 15px;
    background: linear-gradient(90deg,rgba(98, 183, 217, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
    text-align: center;
} */
.btn {
    display: inline-block;
    padding: 4px;
    margin: 1px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
}
.btn-success { background: #28a745; }
.btn-warning { background: #ffc107; color: black; }
.btn-danger { background: #dc3545; }
.btn-info { background: #17a2b8; }
table {
    width: 100%;
    border-collapse: collapse;
}
table,th,tr,td {
    border: 1px solid #ddd;
    align-content: center;
    justify-content: center;
    width: 30px;
}
th, td {
    padding: 10px;
    text-align: center;
}
th {
    background: #f2f2f2;
}
.alert {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}
.alert-success { background: #d4edda; color: #155724; }
.alert-danger { background: #f8d7da; color: #721c24; }
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    
}
input, textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

