.result-item{
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.badge{
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
    background: #ddd;
    margin-left: 10px;
}
.page-container{
    width:95%;
    max-width:1300px;
    margin:30px auto;
}

.page-title{
    font-size:32px;
    margin-bottom:25px;
    color:#0f172a;
}

.batch-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
}

.batch-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.batch-card:hover{
    transform:translateY(-5px);
}

.batch-header{
    background:#0f172a;
    color:white;
    padding:20px;
}

.batch-title{
    font-size:22px;
    font-weight:bold;
    margin-bottom:10px;
}

.batch-meta{
    font-size:14px;
    opacity:0.9;
}

.batch-body{
    padding:20px;
}

.info-row{
    margin-bottom:12px;
    color:#334155;
}

.view-btn{
    display:inline-block;
    margin-top:15px;
    background:#2563eb;
    color:white;
    padding:12px 18px;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

.view-btn:hover{
    background:#1d4ed8;
}

.empty-box{
    background:white;
    padding:40px;
    border-radius:12px;
    text-align:center;
    color:#64748b;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}