@import url("../reset.css");
@import url("../shared.css");

@import url("../footer.css");
@import url("../header.css");

.app-dashboard-actions {
	margin-bottom: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
}

.app-dashboard-actions-card {
	background: #fff;
	border-radius: 25px;
	padding: 55px 15px 30px;
	text-decoration: none;
	color: #000;
	min-width: 250px;
	transition: 0.3s;

	box-shadow: 0px 1.85px 3.15px 0px #00000004, 0px 8.15px 6.52px 0px #00000007,
		0px 20px 13px 0px #00000009, 0px 38.52px 25.48px 0px #0000000b,
		0px 64.81px 46.85px 0px #0000000e, 0px 100px 80px 0px #00000012;
}

.app-dashboard-actions-card:hover {
	transform: translateY(-10px);
}

.app-dashboard-actions-card__title {
	font-size: 21px;
	margin-bottom: 24px;
}

.app-dashboard-actions-card__info {
	border-radius: 25px;
	width: 100%;
	height: 195px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d0e7b4;
}

.app-dashboard-actions-card__info.app-dashboard-actions-card__info--request {
	background: #d2edff;
}

.app-dashboard-actions-card__info.app-dashboard-actions-card__info--messages {
	background: #ffef9e;
}

.app-dashboard-actions-card__info-img {
}

.app-dashboard-requests-table-box {
	margin-bottom: 140px;
}

.app-dashboard-businesses-table-box {
	margin-bottom: 100px;
}

.app-dashboard-reminder-box {
	background: #4f6765;
	padding: 20px 0;
}

.app-dashboard-reminder-list {
	text-align: center;
	color: #fff;
	font-weight: 300;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.app-dashboard-reminder-list__item {
	position: relative;
}

.app-dashboard-reminder-list__item.app-dashboard-reminder-list__item--dot::after {
	content: "";
	left: -14px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
}

.app-dashboard-questions-box {
	margin: 80px 0;
	text-align: center;
}

.app-dashboard-questions-title {
	margin-bottom: 20px;
	font-weight: 300;
	font-size: 28px;
}

.app-dashboard-questions-list {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.app-dashboard-questions-list__link {
	text-decoration: none;
	font-weight: 300;
	font-size: 28px;
	color: #000;
}

.app-dashboard-questions-list__link:hover {
	text-decoration: underline;
}

@media (max-width: 1200px) {
	.app-dashboard-actions-card__title {
		font-size: 18px;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.app-dashboard-actions {
		flex-direction: column;
	}

	.app-dashboard-reminder-list {
		font-size: 20px;
	}

	.app-dashboard-questions-title {
		font-size: 18px;
	}

	.app-dashboard-questions-box {
		margin: 40px 0;
	}

	.app-dashboard-questions-list {
		flex-direction: column;
	}

	.app-dashboard-questions-list__link {
		font-size: 18px;
	}
}
