/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #2c3e50;
}

/* Custom Primary Color (FSAC Blue-ish) */
:root {
    --bs-primary: #0d6efd;
    /* Adjust to match FSAC brand if needed */
    --bs-primary-rgb: 13, 110, 253;
}

.card {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.master-card {
    cursor: pointer;
}

/* Resource Icons */
.resource-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}