/* General Styling */
body {
    background-color: #f4f4f9;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    background-color: #4b0082 !important;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

/* Card Styling */
.card {
    border: none;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* Fix Footer Floating Issue */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Push main content to take up space */
main {
    flex: 1;
}

/* Footer */
footer {
    background-color: #3a0066 !important; /* Darker royal purple */
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    position: relative;
}

/* Footer Links */
footer a {
    color: #dcdcdc; /* Light gray links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
    color: #ffffff !important; /* White on hover */
    text-decoration: underline; /* Underline on hover */
}