@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
	margin: 0;
	font-family: sans-serif;
	padding: 0;
	background: #e6e6e6;
	overflow: hidden;

}

.main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100vh;
	overflow: hidden;
}

.kontrol-sidebar {
	background: #fefefe;
	width: 20vw;
	height: 80vh;
	border-radius: 0 25px 25px 0;
	box-shadow: 3px 3px 5px rgba(0,0,0,35%);
}

.kontrol-content {
	width: 75vw;
	height: 80vh;
	border-radius: 25px 0 0 25px;
	background: #fefefe;
	box-shadow: 3px 3px 5px rgba(0,0,0,35%);
	padding:  0 2vw;
	box-sizing: border-box;
	overflow-y: scroll;
	padding-bottom: 5vh;
}

.kontrol-head {
	width: 100%;
	height: 8vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bolder;
	padding: 2vh;
	box-sizing: border-box;
	border-bottom: 2px dashed gray;
	font-family: 'Oswald';
	color: #c7191e;
	font-style: italic;
	letter-spacing: -1px;
}

.kontrol-head img {
	height: 100%;
}

.kontrol-sidebar .settings {
	padding: 1vh 1vw;
}


.kontrol-sidebar .settings ul {
	list-style: none;
	padding: 0;
}

.kontrol-sidebar .settings ul li {
	list-style: none;
	margin-bottom: 15px;
}

.kontrol-sidebar .settings ul li a {
	color: white;
	display: block;
	background: #193567;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	border-radius: 10px;
	box-shadow: 2px 2px 5px rgba(0,0,0,35%);
	font-weight: bold;
	font-family: 'Roboto';
	transition: 300ms;
}

.kontrol-sidebar .settings ul li a:hover {
    background: #041533;
}

.kontrol-content h2 {
    font-family: 'Oswald';
    font-size: 1.7rem;
    border-bottom: 2px dashed gray;
    padding-bottom: 1vw;
    text-align: center;
}

input {
    outline: none;
    border: 0;
    border-bottom: 1px dashed;
    padding: 5px;
    margin: 2px 10px;
}

select {
    border: 0;
    outline: none;
    border-radius: 5px;
    background: #193567;
    color: white;
    font-family: 'Poppins';
    font-weight: 600;
    text-align: center;
    padding: 4px 5px;
    cursor: pointer;
}

td a {
    background: #c7191e;
    color: white;
    padding: 5px 10px;
    display: block;
    border-radius: 5px;
    transition: 300ms;
    text-decoration: none;
}

.kontrol-container button {
    background: #c7191e;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    border: 0;
    outline: none;
    font-size: 1rem;
    font-weight: bolder;
    font-family: 'Poppins';
    cursor: pointer;
    transition: 300ms;
}

.kontrol-container button:hover {
    background: #940107;
}

td a:hover {
    background: #940107;
}

thead {
    text-align: center;
    font-weight: bolder;
    background: #c7191e;
    color: white;
}

thead td {
    padding: 5px 20px;
}

.etkinlik-img {
    width: 50%;
    margin: 20px 0;
    margin-left: 25%;
}

.etkinlik-img img {
    width: 100%;
    box-shadow: 3px 3px 10px rgba(0,0,0,55%);
    border-radius: 10px;
}

input[type="submit"] {
    cursor: pointer;
}