/* ============================================ */
/* Added styles for assignment page offer cards */
/* ============================================ */

.offer-section .offer-card ul {
    color: #cfd8dc; /* Slightly lighter text for better contrast */
    font-weight: 600; /* Slightly bolder for readability */
    line-height: 1.9; /* Increased line height for better spacing */
    font-size: 15px; /* Slightly smaller font size for neatness */
    padding-left: 20px; /* Add left padding for list indentation */
    text-align: left; /* Left align list items for better readability */
}

.offer-section .offer-card li {
    margin-bottom: 10px; /* Slightly more spacing between list items */
}

/* Responsive adjustments for assignment page offer cards */
@media (max-width: 768px) {
    .offer-section .offer-card ul {
        font-size: 14px;
        padding-left: 15px;
    }
}

/* Fix Get Assignment button alignment and spacing */
.offer-section .offer-card a.auth-btn.login-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    background: #FFD93D;
    color: black;
    border: none;
    transition: background 0.3s ease;
}

.offer-section .offer-card a.auth-btn.login-btn:hover {
    background: #FF9A00;
}

