body {
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
    
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

h1 {
    font-size: 28px;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* Wrapper that makes whole card clickable */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block; /* allows full clickable area */
}

/* Card box */
.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

/* Icon on top */
.icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 32px;
    color: #0d6efd; /* Microsoft blue */
    margin-bottom: 12px;
}


.iconImg {
    width: 28px !important;
    height: 28px !important;
}

h3 {
    margin: 0;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
}

p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

/* "Open Application" link style inside card */
.open-text {
    display: inline-block;
    margin-top: 10px;
    color: #079383;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* Optional: hover underline for "Open Application" */
.card:hover .open-text {
    text-decoration: none;
    color: #0d6efd;
}

.stickOnly {
    position: sticky;     /* stays in normal flow but sticks */
    top: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 1px;
}

.stickOnly .input-group {
    max-width: 500px;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 15px;         /* space between logo and text */
}

.header-top img {
    height: 90px;
}

.header-top h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

