@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Arimo&display=swap');

body, html {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: white;
}

.link-black {
	color: black;
}

h1 {
	color: red;
	font-family: 'Bebas_Neue', sans-serif; 
	font-size: 7em;
	text-align: center;
}

h2 {
	color: red;
	font-family: 'Bebas_Neue', sans-serif;
	font-size: 2em;
	text-align: center;
}

h3 {
	font-family: 'Arimo', sans-serif; 
	text-align: right;
	padding: 20px;
}

.dir-txt {
	color: white;
}

.error-msg {
	color: white;
}

.text-white {
	color: white;
}

.background-black {
	background-color: black;
}

.nav h2 {
	color: white;
	margin-left: 20px;
}

.container, form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.section {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.profile-link, .nav-link {
	color: white;
	text-decoration: none;
}



input[type="text"] {
	margin-top: 10px;
	padding: 10px;
	border: 1px solid #000;
	border-radius: 4px;
}

label {
	margin-right: 10px;
}

button {
	padding: 10px 20px;
	border: 2px solid white;
	border-radius: 4px;
	background-color: black;
	color: white;
	font-size: 16px;
	margin-top: 10px;
	display: inline-block;
}

.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background-color: black;
	margin: 0px;
}

.left-content, .nav {
	display: flex;
	align-items: center;
}

.top-bar .left-content h2 a {
	margin-right: 10px;
}

.cinephile-link{
	color: red;
}

.top-bar h2, .top-bar h3 {
	margin: 0;
}

#button-container {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.styled-button {
	padding: 10px 20px;
	border: 2px solid white;
	border-radius: 4px;
	background-color: black;
	color: white;
	font-family: 'Arimo', sans-serif;
	font-size: 3em;
	text-decoration: none;
	text-align: center;
	display: inline-block;
}

table {
	width: 80%;
	margin: auto;
	border-collapse: collapse;
	font-family: 'Arimo', sans-serif;
}

th, td {
	border: 1px solid $e0e0e0;
	text-align: left;
	padding: 8px;
}

th {
	background-color: #f9f9f9;
}

thead th {
	position: sticky;
	top: 0;
	background-color: $ddd;
}

.form-container {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
}

.form-container h3 {
	margin: 0px;
	padding-right: 10px;
}

.button {
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
}

.button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.edit-button {
    background-color: black; 
    border: 2px solid white;
}

.delete-button {
    background-color: black; 
    border: 2px solid white; 
}



