/* ================================
   QUICK ACTIONS – PREMIUM GRID
================================ */
.dr1007quickactions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	padding: 20px;
	max-width: 440px;
	margin: auto;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* ================================
   CARD BASE
================================ */
.dr1007quickactions .qa-card {
	position: relative;
	height: 140px;
	border-radius: 22px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 0 0 1px
		rgba(255, 255, 255, 0.18);
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1007quickactions .qa-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35), inset 0 0 0 1px
		rgba(255, 255, 255, 0.3);
}

/* ================================
   ICON
================================ */
.dr1007quickactions .qa-card .icon {
	font-size: 3.2rem;
	margin-bottom: 10px;
	width: 66px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 8px 22px
		rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform 0.3s ease;
}

.dr1007quickactions .qa-card:hover .icon {
	transform: scale(1.12);
}

/* ================================
   LABEL
================================ */
.dr1007quickactions .qa-card .label {
	font-size: 0.95rem;
	letter-spacing: 0.6px;
	opacity: 0.95;
}

/* ================================
   SHINY EFFECT
================================ */
.dr1007quickactions .qa-card::before {
	content: "";
	position: absolute;
	inset: -60%;
	background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.45)
		50%, transparent 65%);
	transform: rotate(25deg);
	transition: inset 0.7s ease;
}

.dr1007quickactions .qa-card:hover::before {
	inset: 60%;
}

/* ================================
   COLORS
================================ */
.green {
	background: linear-gradient(135deg, #16a34a, #22c55e);
}

.blue {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.emerald {
	background: linear-gradient(135deg, #059669, #34d399);
}

.gold {
	background: linear-gradient(135deg, #ca8a04, #facc15);
}

/* ================================
   MOBILE
================================ */
@media ( max-width : 480px) {
	.dr1007quickactions {
		padding: 16px;
		gap: 12px;
	}
	.dr1007quickactions .qa-card {
		height: 130px;
	}
	.dr1007quickactions .qa-card .icon {
		width: 60px;
		height: 60px;
		font-size: 3rem;
	}
}