/* SarkariResult Layout Styles */
.sarkari-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sarkari-box {
    border: 1px solid #e2e8f0;
    border-radius: 4px; /* SarkariResult uses sharp or slightly rounded corners */
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.box-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 0.75rem;
    text-transform: uppercase;
}

.result-box .box-header { background: #ef4444; } /* Red */
.admit-box .box-header { background: #2563eb; } /* Blue */
.job-box .box-header { background: #1e293b; }   /* Dark/Black */

.box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.box-list li {
    border-bottom: 1px solid #e2e8f0;
}

.box-list li:last-child {
    border-bottom: none;
}

.box-list li a {
    display: block;
    padding: 12px 15px;
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    line-height: 1.4;
}

.box-list li a:hover {
    color: #2563eb;
    background: #f8fafc;
    padding-left: 20px; /* Slight movement effect */
}

.box-footer {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.btn-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: white;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-more:hover {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sarkari-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 2rem;
    }
}
