/* ApplicationSimpleCard styles */

.application-card-container {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.application-card-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.application-card {
    width: 100%;
    height: 100%;
}

.cursor-pointer {
    cursor: pointer;
}
