/* ================================
   QUICK ACTIONS – PREMIUM GRID
   Always 2 Columns | Mobile + Desktop Same
================================ */
.dr1053quickactions {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* ALWAYS 2 columns */
	gap: 14px;
	padding: 20px;
	max-width: 440px; /* desktop & mobile same width */
	margin: auto;
}

/* ================================
   CARD BASE
================================ */
.dr1053quickactions .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;
}

.dr1053quickactions .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 – BIG & PREMIUM
================================ */
.dr1053quickactions .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;
}

.dr1053quickactions .qa-card:hover .icon {
	transform: scale(1.12);
}

/* ================================
   LABEL
================================ */
.dr1053quickactions .qa-card .label {
	font-size: 0.95rem;
	letter-spacing: 0.6px;
	opacity: 0.95;
}

/* ================================
   SHINY SWEEP EFFECT
================================ */
.dr1053quickactions .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;
}

.dr1053quickactions .qa-card:hover::before {
	inset: 60%;
}

/* ================================
   GRADIENT THEMES
================================ */
.dr1053quickactions .green {
	background: linear-gradient(135deg, #16a34a, #22c55e);
}

.dr1053quickactions .blue {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.dr1053quickactions .emerald {
	background: linear-gradient(135deg, #059669, #34d399);
}

.dr1053quickactions .gold {
	background: linear-gradient(135deg, #ca8a04, #facc15);
}

/* ================================
   RESPONSIVE (SAME LOOK – SLIGHTLY COMPACT)
================================ */
@media ( max-width : 480px) {
	.dr1053quickactions {
		padding: 16px;
		gap: 12px;
	}
	.dr1053quickactions .qa-card {
		height: 130px;
	}

	/* ✅ FIXED TYPO HERE */
	.dr1053quickactions .qa-card .icon {
		width: 60px;
		height: 60px;
		font-size: 3rem;
	}
}