/* Subscriptions Page UI Improvements */
.sub-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sub-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.sub-card h3 {
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f5f9;
	position: relative;
}

.sub-card h3::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #0b4c68;
}

.sub-pay-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #008080 0%, #0b4c68 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(11, 76, 104, 0.2);
	transition: all 0.2s ease;
	border: 0;
	text-transform: none;
	margin-top: 10px;
}

.sub-pay-btn:hover {
	background: linear-gradient(135deg, #0b4c68 0%, #07374b 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(11, 76, 104, 0.3);
	color: #ffffff !important;
}

.sub-pay-btn i {
	font-size: 16px;
}

/* Address block styled list */
.sub-contact-info {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sub-contact-info li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14.5px;
	line-height: 1.6;
	color: #475569;
	margin-bottom: 12px;
}

.sub-contact-info li:last-child {
	margin-bottom: 0;
}

.sub-contact-info li i {
	color: #0b4c68;
	font-size: 16px;
	margin-top: 4px;
	flex-shrink: 0;
}

.sub-contact-info li strong {
	color: #1e293b;
}

.sub-contact-info li a {
	color: #0b4c68;
	text-decoration: underline;
}

.sub-contact-info li a:hover {
	color: #07374b;
}

/* Modern Table Styles */
.sub-table-wrapper {
	width: 100%;
	overflow-x: auto;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	margin-top: 15px;
}

.sub-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background: #ffffff;
}

.sub-table th {
	background: #f8fafc;
	border-bottom: 2px solid #e2e8f0;
	color: #334155;
	font-weight: 700;
	text-align: left;
	padding: 14px 18px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sub-table td {
	padding: 16px 18px;
	border-bottom: 1px solid #f1f5f9;
	color: #475569;
	font-size: 14px;
	line-height: 1.6;
}

.sub-table tr:last-child td {
	border-bottom: 0;
}

.sub-table td strong {
	color: #1e293b;
	font-weight: 700;
}
