body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header {
    background: #005a87;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    height: 100px;
    margin-right: 10px;
}

nav a, .auth-links a, .admin_sub_nav {
    color: white;
    text-decoration: none;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
a:hover {
    background-color: #0e0156;
    border-radius: 10px;
}
nav, .auth-links, .admin_sub_nav {
    margin: 5px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 10px;
    background: #014465;
}

main {
    padding: 2rem;
    background: white;
    margin-bottom: 3rem;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}
.welcome-img {
    width: 100%;
}

a:hover {
    background-color: #0e0156;
    border-radius: 10px;
}
main a {
	text-decoration: none;
}
main a:hover {
	background-color: LightCyan;
    border-radius: 0;
	text-decoration: underline;
}
.admin_sub_nav:hover {
    background-color: #0e0156;
    border-radius: 10px;
}

/*Responsive*/

/*Phone*/
@media screen and (max-width: 66em) {
    header {
        display: grid;
        grid-template-columns: 20% 70%;
    }
    nav, .auth-links {
        background: #005a87;
        margin: 5px;
        margin-top: 15px;
        padding: 0;
        grid-column: 1 / -1 ;
        display: flex;
        justify-content: space-evenly;
    }
    nav a {
        border-radius: 10px;
        background: #014465;
        padding: 10px;
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }
    .auth-links {
        margin-top: 1px;
        grid-row-start: 4;
        grid-column: 1 / -1 ;
        display: flex;
        justify-content: space-around;
    }

    .auth-links a {
        border-radius: 10px;
        background: #014465;
        margin: 5px;
        margin-bottom: 0%;
        padding: 10px;
        padding-left: 15%;
        padding-right: 15%;
    }
}

.admin_sub_nav {
	display: inline-block;
}
.delete_button {
	background-color: rgb(252, 177, 177);
	border-radius: 10px;
	font-size: 1rem;
}
.delete_button:hover {
	background-color: rgb(253, 142, 142);
}
.update_button {
	background-color: rgb(241, 255, 255);
	border-radius: 10px;
	font-size: 1rem;
}

.update_button, .delete_button {
	border-style: outset;
	border-width: medium;
	border-color: lightgray;
	padding: 3px;
}
.update_button:hover, .delete_button:hover {
	border-style: inset;
	border-radius: 10px;
}

.table-actions {
    display: flex;
    justify-content: space-evenly;
}
