/* General Page Styling */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 40px;
}

/* Container and Row Adjustments */
.container {
    max-width: 1200px;
}

.row {
    display: flex;
    justify-content: center;
}

/* Card Styling */
.card {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Title and Text Styling */
.card-title {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Image Styling */
.card img {
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Date and Earnings Info */
.text-muted {
    font-size: 0.85rem;
    color: #6c757d;
}

.text-muted small {
    display: block;
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .card {
        margin-bottom: 20px;
    }
}
