header {
    background-color: #fff;
    padding: 10px;
}

h1 {
    color: #902087;
    margin-bottom: 0;
}

nav {
    text-align: center;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

li {
    display: inline-block;
    margin: 0 10px;
}

a {
    color: #902087;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #EAB930;
}

.logo {
    width: 150px;
    height: 150px;
    background-image: url('../images/logo.png');
    border-radius: 50%;
    background-size: cover;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    top: 6px;
}

footer {
    background-color: #902087;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
    padding: 30px 0;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

label {
    color: #902087;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    /*margin-bottom: 15px;*/
}

input[type="submit"],
button {
    background-color: #902087;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: background-color 0.3s;
}

input[type="submit"]:hover,
button:hover {
    background-color: #EAB930;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th,
td {
    padding: 10px;
    border: 1px solid #ccc;
}

th {
    background-color: #f0f0f0;
    color: #902087;
}

td {
    color: #444;
}

.btn {
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #902087 !important;
    color: #fff !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #EAB930 !important;
}

.btn-danger {
    background-color: #DC3545 !important;
    color: #fff !important;
    border: none !important;
}

.btn-danger:hover {
    background-color: #C82333 !important;
}

.search-bar {
    margin-bottom: 20px;
}

.search-bar input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

.search-bar button {
    background-color: #902087;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #EAB930;
}

select {
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}
