﻿.zs-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.zs-card .title {
	font-size: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	border-bottom: 1px dashed white;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

.zs-card .content {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.zs-card .content .photo {
	overflow: hidden;
	width: 100px;
	min-width: 100px;
	height: 100px;
	background-color: #e6e8eb;
	border: 2px solid white;
	border-radius: 50%;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

.zs-card .content .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zs-card .content .info {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zs-card .content .info .link {
	cursor: pointer;
}

.info-container select {
	width: 100%;
	padding: 6px;
	border-radius: 6px;
	border-color: #e6e8eb;
}

.btn-primary {
	background-color: #48c6ef !important;
	color: white;
	border: none !important;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: #6f86d6 !important;
}

.btn-primary:disabled {
	background-color: #e6e8eb !important;
	color: #a1a3a6 !important;
}

.btn-warning {
	background-color: #ff9900 !important;
	color: white !important;
	border: none !important;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
}

.btn-warning:hover {
	background-color: #ffad33 !important;
}

.btn-danger {
	background-color: #ff0000 !important;
	color: white;
	border: none !important;
}

.search {
	align-items: center;
	margin-bottom: 10px !important;
}

@media screen and (max-width: 1200px) {
	#app .col-6,
	#app .col-5,
	#app .col-2 {
		width: 100% !important;
	}

	#app .col-5,
	#app .col-2 {
		margin-bottom: 10px !important;
	}
}