*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: 'Poppins', sans-serif; */
	color: #cac7ff;
}
.container {
	width: 100%;
	min-height: 100vh;
	background-image: linear-gradient(rgba(0,8,51,0.6),rgba(0,8,51,0.8)), url(images/background.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	/*display: flex;*/
	align-items: center;
	justify-content: center;
}
nav a img {
	width: 100px;
}
.bg-color {
	/*background: rgba(201,32,52,0.9);*/
	background: rgba(0,0,0,1);
}
.text-color {
	/*color: rgba(201,32,52,1);*/
	color: rgba(104,130,255,1);
	font-size: 1.6rem;
    text-align: center;
}
.nav-color {
	color: rgba(255,255,255,1);
	display: block;
    padding: 0.5rem 1rem;
}
.nav-color:hover {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
}
@media screen and (min-width: 768px) {
	.nav-color {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
}
.search-bar {
	margin: auto;
	width: 100%;
	/*max-width: 500px;*/
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	border-radius: 60px;
	padding: 5px 10px;
	backdrop-filter: blur(4px) saturate(180%);
}
.search-bar input{
	background: transparent;
	flex: 1;
	border: 0;
	outline: none;
	padding: 15px 20px;
	color: #cac7ff;
}
::placeholder{
	color: #cac7ff;
}
.search-bar button img{
	width: 25px;
}
.search-bar button{
	border:0;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: #58629b;
	cursor: pointer;
}
#searchresult {
	color:#cac7ff;
}
.table {
	margin: auto;
	margin-top: 40px;
}
#searchresult tbody td {
	padding: 5px 20px;
}
.table-striped tbody tr:nth-of-type(odd){
	background-color: rgba(202,199,255,.05) !important;
}
.table td, .table th {
	border-top:none !important;
}

/* Style pentru versiunea mobila */
@media screen and (max-width: 768px) {
	.table td, .table th {
		padding: 3px !important;
	}
	.container {
		padding-left: 0;
		padding-right: 0;
	}
}
