/*=========================================
AI Wealth Tech India IPO Tracker
Common Styles
=========================================*/

/* Reset */

*{
	box-sizing:border-box;
}

.awti-wrapper{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	padding:20px;
}

/* Card */

.awti-card{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:18px;
	padding:25px;
	margin-bottom:25px;
	box-shadow:0 8px 20px rgba(15,23,42,.06);
}

/* Button */

.awti-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:12px 22px;
	border:none;
	border-radius:12px;
	font-size:15px;
	font-weight:600;
	text-decoration:none;
	cursor:pointer;
	transition:.3s ease;
}

.awti-btn-primary{
	background:#2563eb;
	color:#fff;
}

.awti-btn-primary:hover{
	background:#1d4ed8;
	color:#fff;
}

.awti-btn-outline{
	background:#fff;
	color:#2563eb;
	border:1px solid #2563eb;
}

.awti-btn-outline:hover{
	background:#2563eb;
	color:#fff;
}

/* Status Badge */

.awti-status{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:8px 16px;
	border-radius:999px;
	font-size:13px;
	font-weight:700;
	border:1px solid transparent;
	width:max-content;
}

.awti-status.live{
	background:#dcfce7;
	color:#15803d;
	border-color:#86efac;
}

.awti-status.upcoming{
	background:#fef3c7;
	color:#b45309;
	border-color:#fcd34d;
}

.awti-status.closed{
	background:#fee2e2;
	color:#b91c1c;
	border-color:#fca5a5;
}

/* Empty */

.awti-empty{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:18px;
	padding:50px 20px;
	text-align:center;
}

.awti-empty h3{
	margin:0 0 10px;
	font-size:24px;
	color:#111827;
}

.awti-empty p{
	margin:0;
	color:#6b7280;
}

/* Progress */

.awti-progress{
	width:100%;
	height:8px;
	background:#e5e7eb;
	border-radius:999px;
	overflow:hidden;
}

.awti-progress span,
.awti-progress-fill{
	display:block;
	height:100%;
	background:#2563eb;
	border-radius:999px;
}

/* Tables */

.awti-table{
	width:100%;
	border-collapse:collapse;
}

.awti-table th,
.awti-table td{
	padding:14px;
	border-bottom:1px solid #e5e7eb;
	text-align:left;
}

.awti-table th{
	width:220px;
	font-weight:700;
	color:#374151;
	background:#f8fafc;
}

/* Responsive */

img{
	max-width:100%;
	height:auto;
}